MCP endpoint — one URL, any LLM, full agent toolset
Each AgentWallet agent gets a dedicated MCP endpoint with 14 typed tools — balance, charge, refund, payout, USDC, x402, mandate, inbox, trace and more. One URL drops into Cursor, Claude Desktop, Devin, LangChain, OpenAI Tools or any MCP-compatible client.
- 14 typed tools — balance, charge, refund, payout, usdc.transfer, x402.pay, mandate.sign, inbox.threads and more.
- Vendor-neutral — works with Anthropic, OpenAI, Google, xAI, open-source models via MCP.
- Streaming responses for long-running operations (payouts, settlements).
- Per-tool policy gate — every call hits the same caps and allowlists as a direct API call.
- Trace ID returned on every call — chains MCP invocations into the unified ledger.
Frequently asked questions
- What is MCP?
- MCP (Model Context Protocol) is the open standard for connecting LLMs to tools. An MCP server publishes a typed tool catalog over HTTP/JSON-RPC; any MCP-compatible client (Claude Desktop, Cursor, Devin, LangChain, OpenAI Tools) can call those tools without per-vendor wiring.
- How do I add AgentWallet to Claude Desktop?
- In Claude Desktop's settings → Developer → Edit MCP servers, add a new server with the URL we issue at /agents/:id/mcp. Save, restart Claude Desktop, and the 14 AgentWallet tools appear in the tool catalog.
- How do I add AgentWallet to Cursor?
- In Cursor settings → MCP, click 'Add server', paste the per-agent MCP URL, save. The tools (charge, payout, usdc.transfer, mandate.sign, balance, trace…) become available in any Cursor agent session.
- What tools does the MCP endpoint expose?
- 14 typed tools: balance, charge, refund, payout, usdc.transfer, usdc.balance, x402.pay, mandate.sign, mandate.verify, inbox.threads, inbox.send, trace.get, trace.search, agent.profile. All schemas are introspectable at runtime.
- Is the MCP endpoint authenticated?
- Yes. The endpoint URL contains a per-agent token; clients pass it in the URL or as a Bearer header. There are no shared secrets between agents — revoke a single agent's token without affecting others.
- Can I add my own custom MCP tools?
- Custom tool plugins are on the roadmap for v0.8 — you'll be able to register your own tools alongside the 14 AgentWallet built-ins on a per-agent or per-account basis.