A gateway for MCP servers with Repello ARGUS integration
Project description
Repello MCP Gateway with ARGUS Integration
The Repello MCP Gateway is an advanced intermediary solution for Model Context Protocol (MCP) servers, architected to integrate directly with Repello's ARGUS API. It centralizes your AI infrastructure and secures it by analyzing every request and response.
The Gateway acts as an intermediary between your development environment (like Cursor or Claude Desktop) and other MCP servers. It:
- Reads server configurations from an
mcp.jsonfile. - Manages the lifecycle of these configured MCP servers.
- Intercepts all tool calls and responses.
- Sends the content of each request and response to the Repello ARGUS API for real-time analysis.
- Provides a unified interface for discovering and interacting with all proxied MCPs.
Installation
Python (recommended)
Install the repello-mcp-gateway package:
pip install repello-mcp-gateway
How It Works
The Gateway requires credentials for the Repello ARGUS API to function. You must provide a Tracking ID and an API Key via command-line arguments at startup.
When a tool is called (e.g., from an editor like Cursor), the Gateway intercepts the call. Before forwarding it to the downstream MCP server (like a filesystem server), it sends the request payload to https://argusapi.repello.ai/analyze-prompt. If the API approves the request, it's sent to the tool.
When the tool returns a result, the Gateway intercepts the response. It sends this response to https://argusapi.repello.ai/analyze-response. If the API approves, the final result is sent back to the client application.
If the ARGUS API detects a threat in either the request or response, it will return an error, and the Gateway will block the action, raising an AnalysisError.
Usage
You must start the gateway with your mcp.json path, a valid tracking ID, and an API key.
repello-mcp-gateway --mcp-json-path ~/.cursor/mcp.json --tracking-id <your-tracking-id> --api-key <your-api-key>
At startup, the gateway will make a test call to the Repello API to validate the provided credentials. If the credentials are not valid, the gateway will fail to start.
Example mcp.json Configuration
The client application (e.g., Cursor) should be configured to launch the gateway. The gateway, in turn, is configured to launch the downstream MCP servers. The client only needs to know about the gateway.
Cursor example:
{
"mcpServers": {
"repello-mcp-gateway": {
"command": "repello-mcp-gateway",
"args": [
"--mcp-json-path",
"~/.cursor/mcp.json",
"--tracking-id",
"YOUR_TRACKING_ID_HERE",
"--api-key",
"YOUR_API_KEY_HERE"
],
"servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
}
}
}
}
}
Claude example:
First, find your python path:
which python
Then, configure your claude_desktop_config.json:
{
"mcpServers": {
"repello-mcp-gateway": {
"command": "<python path>",
"args": [
"-m",
"mcp_gateway.server",
"--mcp-json-path",
"<path to claude_desktop_config>",
"--tracking-id",
"YOUR_TRACKING_ID_HERE",
"--api-key",
"YOUR_API_KEY_HERE"
],
"servers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
}
}
}
}
}
Gateway Tools
The Gateway provides one primary tool for discovery:
get_metadata: Provides information about all available proxied MCPs to help LLMs understand which tools and resources are available through the gateway.
The tools from downstream servers (like list_directory from the filesystem server) will be dynamically registered on the gateway with a prefix (e.g., filesystem_list_directory).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file repello_mcp_gateway-1.0.7.tar.gz.
File metadata
- Download URL: repello_mcp_gateway-1.0.7.tar.gz
- Upload date:
- Size: 14.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afe45afedff7d34254c9b703f41a8480afe229282855bf66abfd7e82ebde0d8b
|
|
| MD5 |
31277bb3886172edfa5762dd53866887
|
|
| BLAKE2b-256 |
5ca83fa086a161e8d6d3650c0efac10e97aab7bfeff53536f49eefbde6658967
|
File details
Details for the file repello_mcp_gateway-1.0.7-py3-none-any.whl.
File metadata
- Download URL: repello_mcp_gateway-1.0.7-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
327b3f0c897c360210f04fac06ece4c021015da08197ffb28927b3df2dfb4962
|
|
| MD5 |
bfd285007403344ede18bbe210e006e8
|
|
| BLAKE2b-256 |
2d29bdcaa930385bada6ad57ffcb75ba964e7b1c245af4f0fc4d92633bec8f66
|