Metadata-Version: 2.4
Name: mcp-hive-proxy
Version: 0.3.0
Summary: A command-line interface for interacting with MCP servers with intelligent question matching and Windsurf integration
Author-email: Trilogy Group <engineering@trilogy.com>
License: MIT
Project-URL: Homepage, https://github.com/trilogy-group/mcp-hive-proxy
Project-URL: Bug Tracker, https://github.com/trilogy-group/mcp-hive-proxy/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: mcp>=1.6.0

# MCP Hive Proxy

A command-line interface for interacting with MCP (Model Context Protocol) servers using the SSE protocol.

## Features

- **Ask questions** to any MCP server directly from the command line
- **Intelligent question matching** for servers with predefined questions
- **Automatic parameter handling** for specialized MCP servers
- **Manage server configurations** with easy add, remove, and list operations
- **Set default servers** for quick access
- **Import and export** server configurations
- **Synchronize with Windsurf/Cursor** to integrate with AI assistants
- **Standalone script** that can be run outside of a virtual environment

## Installation

```bash
# From the source directory
pip install -e .

# Or once published
pip install mcp-hive-proxy
```

## Usage

### Asking Questions

```bash
# Ask a question to the default server
mcp-hive-proxy ask "What is the best AI tool for coding?"

# Ask a question to a specific server by name
mcp-hive-proxy ask --server team-mcp "What tools are being used in this team room?"

# Ask a question to a specific server by URL
mcp-hive-proxy ask --url https://mcp-server.example.com/sse "What is the weather today?"

# List available questions for servers with predefined questions
mcp-hive-proxy ask --server team-mcp --list-questions
```

### Managing Servers

```bash
# List all configured servers
mcp-hive-proxy servers list

# Add a new server
mcp-hive-proxy servers add my-server https://mcp-server.example.com/sse

# Add a server and sync with Windsurf
mcp-hive-proxy servers add my-server https://mcp-server.example.com/sse --sync-windsurf

# Remove a server
mcp-hive-proxy servers remove my-server

# Remove a server and sync with Windsurf
mcp-hive-proxy servers remove my-server --sync-windsurf

# Set the default server
mcp-hive-proxy servers set-default tweet-finder-mcp

# Export server configuration
mcp-hive-proxy servers export --file servers.json

# Import server configuration
mcp-hive-proxy servers import servers.json

# Import server configuration and sync with Windsurf
mcp-hive-proxy servers import servers.json --sync-windsurf

# Manually sync with Windsurf
mcp-hive-proxy servers sync --windsurf
```

## Intelligent Question Matching

Some MCP servers have a predefined set of questions they can answer. The CLI automatically:

1. Detects servers with list/answer patterns
2. Finds the best matching question based on your query
3. Handles required parameters (like s3_key, start_date, end_date)
4. Shows available questions when using the `--list-questions` flag

Example:
```bash
# List available questions on a server
mcp-hive-proxy ask --server team-mcp --list-questions

# Ask a question - the CLI will find the best matching predefined question
mcp-hive-proxy ask --server team-mcp "What tools are my team using?"
```

## Windsurf Integration

The CLI can synchronize your MCP server configurations with Windsurf, allowing you to use the intelligent question matching and parameter handling features directly from Windsurf:

```bash
# Add a server and sync with Windsurf
mcp-hive-proxy servers add my-server https://mcp-server.example.com/sse --sync-windsurf

# Manually sync all servers with Windsurf
mcp-hive-proxy servers sync --windsurf
```

When syncing with Windsurf, the CLI:

1. Updates the Windsurf MCP configuration file (`~/.codeium/windsurf/mcp_config.json`)
2. Configures Windsurf to use the MCP Hive Proxy for all MCP server interactions
3. Creates a memory instructing Windsurf to always use the proxy for MCP tools

This ensures that all MCP interactions in Windsurf benefit from the intelligent question matching and parameter handling features of the MCP Hive Proxy.

## Standalone Script

The repository also includes a standalone script `mcp_cli_standalone.py` that can be run directly without installing the package:

```bash
# Make it executable
chmod +x mcp_cli_standalone.py

# Run it directly
./mcp_cli_standalone.py ask "What are the latest AI trends?"

# Or copy it to a location in your PATH
cp mcp_cli_standalone.py ~/bin/mcp-hive-proxy
```

## Configuration

The CLI stores its configuration in `~/.config/mcp_cli/config.json`. This file is created automatically when you first run the CLI, and it contains:

- A list of configured servers with their URLs
- The default server to use when none is specified

## Requirements

- Python 3.9 or higher
- `mcp` package (installed automatically as a dependency)

## License

MIT
