About Local MCP Proxy
Local MCP Proxy is an MCP server published by gisikw in the Browser category: a local stdio proxy for http MCP servers. It has been installed 0 times through Conduid.
The repository has 1 stars and 0 forks, with the last commit 8 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.
Install
npx local-mcp-proxyThis server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.
Ask AI
Ask AI about Local MCP Proxy
Powered by Claude · Grounded in docs
Security checks
- ·README presentNot checked yet.
- ·License declaredNot checked yet.
- ·Tests presentNot checked yet.
- ·Dependencies pinnedNot checked yet.
- ·No dynamic code executionNot checked yet.
- !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.
README
local-mcp-proxy
A simple stdio-to-HTTP proxy for MCP (Model Context Protocol) servers.
Why?
Claude Desktop's Connector OAuth flow is currently broken (may be specific to custom connectors), which means you can't directly connect to JSON-RPC over HTTP MCP servers. This proxy works around that by exposing an HTTP-based MCP server over stdio, which Claude Desktop handles natively.
Building
go build -o mcp-proxy mcp-proxy.go
Usage
./mcp-proxy [--bearer <token>] [--debug] <url>
Arguments:
url- The remote MCP server URL to proxy requests to (required)--bearer <token>- Bearer token for Authorization header (optional)--debug- Enable debug logging to stderr (optional)
Claude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"my-mcp-server": {
"command": "/path/to/local-mcp-proxy/mcp-proxy",
"args": [
"--bearer",
"your-token-here",
"https://your-mcp-server.example.com/"
]
}
}
}
Or without authentication:
{
"mcpServers": {
"my-mcp-server": {
"command": "/path/to/local-mcp-proxy/mcp-proxy",
"args": [
"https://your-mcp-server.example.com/"
]
}
}
}
README mirrored from the source repository 3 months ago. The original is authoritative.