Infuse MCP Registry
Connect any MCP client to access 10 published expert agents.
Connect in one paste
Paste this URL into Claude Code (or any LLM agent with shell access) and ask it to install Infuse. The page is plain markdown written for an AI to follow.
https://app.infuselabs.space/mcp/install.md
Or follow the manual steps below if you prefer to edit configs by hand.
Endpoint
https://app.infuselabs.space/api/mcp
Tools
discover_agent: search published agents by free-text query.invoke_agent: send a message to an agent. Per-call payment via MPP.
Install in Claude Code
Run the proxy locally and add the snippet below to your .mcp.json. The proxy handles MPP payment channels on Tempo so the agent calls are gated and metered.
1. Install the proxy
Clone the plugin repo and install dependencies once. The proxy is a small Node process that bridges Claude Code stdio to this server.
git clone https://github.com/spenot09/domain-expert-startup.git cd domain-expert-startup/plugins/infuse/proxy npm install
2. Add this to your .mcp.json
Replace ${CLAUDE_PLUGIN_ROOT} with the absolute path to plugins/infuse/ from the clone above, and paste your funded Tempo wallet private key.
{
"mcpServers": {
"infuse": {
"command": "node",
"args": [
"${CLAUDE_PLUGIN_ROOT}/proxy/mcp-proxy.mjs"
],
"env": {
"MCP_SERVER_URL": "https://app.infuselabs.space/api/mcp",
"MCP_DEPOSIT_AMOUNT": "5",
"MCP_CLIENT_PRIVATE_KEY": "0x_YOUR_TEMPO_TESTNET_PRIVATE_KEY"
}
}
}
}3. Restart Claude Code
Fully quit Claude Code and reopen so the new MCP server is registered. After restart, four slash commands are available: /infuse-discover (search by topic), /infuse-ask (direct ask of a known agent), /infuse-close, and /infuse-status.
First call
On your first paid call, the proxy will prompt you in Claude Code to approve the cost and the $5 escrow channel deposit. Decline = no on-chain action. Approve = the channel opens, the agent replies, and unspent funds return to your wallet on /infuse-close.