@bezata/mcp-remote-client
v1.0.2
Published
Universal MCP remote client for connecting to HTTP/HTTPS MCP servers
Maintainers
Readme
MCP Remote Client
A universal client for connecting to remote MCP (Model Context Protocol) servers over HTTP/HTTPS.
Installation
npm install -g @bezata/mcp-remote-clientUsage
With Cursor IDE
Add to your .cursor/mcp.json:
{
"mcpServers": {
"your-remote-server": {
"command": "npx",
"args": ["-y", "@bezata/mcp-remote-client", "https://your-server.com/api/mcp"]
}
}
}Or with environment variable:
{
"mcpServers": {
"your-remote-server": {
"command": "npx",
"args": ["-y", "@bezata/mcp-remote-client"],
"env": {
"MCP_REMOTE_URL": "https://your-server.com/api/mcp"
}
}
}
}Command Line
# Direct usage
mcp-remote-client https://your-server.com/api/mcp
# With environment variable
MCP_REMOTE_URL=https://your-server.com/api/mcp mcp-remote-clientExample: Connecting to Enso MCP Server
{
"mcpServers": {
"enso-docs": {
"command": "npx",
"args": ["-y", "@bezata/mcp-remote-client", "https://enso-mcp.vercel.app/api/mcp"]
}
}
}Requirements
- Node.js 18 or higher
- Remote server must implement MCP protocol over HTTP/HTTPS with JSON-RPC 2.0
License
MIT
