1. Conduid
  2. Browser
  3. Local MCP Proxy
MCP server · Browser

Local MCP Proxy

A local stdio proxy for http MCP servers

Unclaimed last commit 8 months ago browser
45Fair

Scored 3 months ago · breakdown

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

Install
npx local-mcp-proxy

This 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

I know everything about Local MCP Proxy. Ask me about installation, configuration, usage, or troubleshooting.

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.

Questions

About Local MCP Proxy

How do I install Local MCP Proxy?

Run npx local-mcp-proxy, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Local MCP Proxy safe to use with an AI agent?

Its trust score is 45 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Local MCP Proxy still maintained?

The last commit was 8 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.