Skip to main content

Prerequisites

Setup

Run a single command to add Conto as an MCP server:
claude mcp add conto -- npx @conto_finance/mcp-server \
  --env CONTO_API_KEY=conto_agent_xxx... \
  --env CONTO_BASE_URL=https://conto.finance
Replace conto_agent_xxx... with your actual API key.

Verify

Start a new Claude Code session and try:
> What are my wallet balances?
Claude will use the get_wallets tool to fetch your agent’s wallet information.

Managing the Server

List configured MCP servers:
claude mcp list
Remove the Conto server:
claude mcp remove conto

Self-Hosted

If you’re running a self-hosted Conto instance, set CONTO_BASE_URL to your instance URL:
claude mcp add conto -- npx @conto_finance/mcp-server \
  --env CONTO_API_KEY=conto_agent_xxx... \
  --env CONTO_BASE_URL=https://your-conto-instance.com