ARCHON-MCP-CLIENT
- agent-framework
# archon-mcp-client
About
What is ARCHON-MCP-CLIENT?
ARCHON-MCP-CLIENT is a silent, standards-compliant Model Context Protocol (MCP) client bridge that proxies Claude Desktop stdio requests to an Archon SSE remote backend over HTTPS. It is designed for developers using Claude Desktop who need to connect to remote MCP servers without log pollution that can crash strict JSON-RPC parsers.
How to use ARCHON-MCP-CLIENT?
No installation is required; you configure your claude_desktop_config.json to execute the client remotely via npx, passing the remote SSE endpoint URL with your API key. Full documentation is available at https://archonspecs.dev/docs.html.
Key features of ARCHON-MCP-CLIENT
- Completely silent operation (no stdout pollution)
- Native proxying of stdio to remote SSE
- Guarantees JSON-RPC hygiene for Claude Desktop
- Runs via npx with zero local installation
- Standards-compliant MCP implementation
Use cases of ARCHON-MCP-CLIENT
- Connecting Claude Desktop to a remote MCP server over HTTPS
- Avoiding Claude Desktop parser crashes caused by log output
- Running MCP servers hosted on Archon from a local Claude Desktop client
- Simplifying remote MCP integration without local server installation
FAQ from ARCHON-MCP-CLIENT
What does ARCHON-MCP-CLIENT do differently from other MCP proxies?
It ensures complete stdout JSON-RPC silence, preventing log pollution that would crash Claude Desktop's strict parsers.
How do I connect ARCHON-MCP-CLIENT to a remote MCP server?
Add an entry to your claude_desktop_config.json using npx with the remote SSE URL and your API key, as shown in the usage example.
Does ARCHON-MCP-CLIENT require installation?
No, it runs directly via npx from the npm registry; you only need to configure Claude Desktop.
What type of MCP transport does ARCHON-MCP-CLIENT support?
It proxies Claude Desktop's stdio transport to an Archon SSE backend over HTTPS.
Is ARCHON-MCP-CLIENT free or open-source?
The README does not specify pricing or licensing information.
Details
- Author
- herhu
- Category
- agent-framework
- Repository
- herhu/archonmcp
archon-mcp-client
A completely silent, standards-compliant Model Context Protocol (MCP) client bridge that natively proxies Claude Desktop stdio requests directly into an Archon SSE remote backend over HTTPS.
Unlike other public MCP proxies, this package guarantees complete stdout JSON-RPC hygiene, preventing log pollution that crashes Claude Desktop's strict parsers.
Usage
You do not need to install this library. Just configure your claude_desktop_config.json to execute it remotely via npx. Find more information and full documentation at https://archonspecs.dev/docs.html.
{
"mcpServers": {
"archon-mcp": {
"command": "npx",
"args": [
"-y",
"archon-mcp-client",
"https://archonspecs.dev/mcp/sse?apiKey=your_api_key_here"
]
}
}
}