0.1.7 • Published 6 months ago
@monotool/gateway v0.1.7
Monotool MCP Gateway
A gateway server that enables command-based MCP clients (like Claude Desktop) to connect to the Monotool MCP server.
Installation
npm install -g @monotool/gatewayUsage
Quick Start
Run the gateway with your Monotool server URL:
npx -y @monotool/gateway --sse https://monotool-server-latest.onrender.com/YOUR_SERVER_ID/sseReplace YOUR_SERVER_ID with your actual server ID.
Claude Desktop Configuration
Add the following to your Claude Desktop configuration:
{
"mcpServers": {
"monotool": {
"command": "npx",
"args": [
"-y",
"@monotool/gateway",
"--sse",
"https://monotool-server-latest.onrender.com/YOUR_SERVER_ID/sse"
]
}
}
}Replace YOUR_SERVER_ID with your actual server ID.
Options
--sse: The URL to your SSE endpoint (required)--port: The local port to run the gateway server on (default: 3333)
How It Works
This package creates a local gateway server that connects to your remote Monotool MCP server via Server-Sent Events (SSE). This allows applications that require a command-based approach (like Claude Desktop) to use your Monotool server.
License
MIT