@agent-brains/mcp-client
v1.2.1
Published
Local MCP proxy for Agent Brains Gateway (Remote-MCP bridge)
Downloads
492
Readme
@agent-brains/mcp-client
Local MCP proxy that connects any stdio-based MCP client (Claude Desktop, Cursor, Open Claw, etc.) to the Agent Brains Gateway.
Prerequisites
Recommended: Node.js 20+ (Node.js 18+ is supported).
Generate an API key at https://docs.agent-brains.com/integrations/access-api-key.
Configuration
Add the following to your MCP client config, replacing <your-api-key> with the key you generated above.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"agent-brains": {
"command": "npx",
"args": ["-y", "@agent-brains/mcp-client"],
"env": {
"AGENT_BRAINS_API_KEY": "<your-api-key>"
}
}
}
}Cursor
.cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global):
{
"mcpServers": {
"agent-brains": {
"command": "npx",
"args": ["-y", "@agent-brains/mcp-client"],
"env": {
"AGENT_BRAINS_API_KEY": "<your-api-key>"
}
}
}
}Other clients
Any MCP client that supports stdio servers can run:
AGENT_BRAINS_API_KEY="<your-api-key>" npx @agent-brains/mcp-clientEnvironment variables
| Variable | Default | Description |
|---|---|---|
| REMOTE_MCP_URL | https://api.agent-brains.com/remote-mcp | Gateway URL |
| AGENT_BRAINS_API_KEY | — | API key for authentication |
