Bundie logoBundie
AI

MCP Server

Connect Bundie to Claude, Cursor, VS Code, and any MCP-compatible AI assistant.

The Bundie MCP Server exposes DeFi yield routing as tools that any AI assistant can call. No API keys needed - connect to our hosted server and start earning yield through conversation.

Installation

Cursor (one-click)

Install MCP Server

Claude Desktop

Add to ~/.claude/claude_desktop_config.json:

{
  "mcpServers": {
    "bundie": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.bundie.fi/evm"]
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "bundie": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.bundie.fi/evm"]
    }
  }
}

Claude Code

claude mcp add bundie -- npx mcp-remote https://mcp.bundie.fi/evm

Smithery

npx @smithery/cli install @bundie/evm-mcp --client claude

Available Tools

The server registers 18 tools. Tool names use underscores (e.g. yields_check).

ToolTypeDescription
yields_checkReadBrowse yield opportunities with APY, risk scores, and TVL
yields_risk_scoresReadDetailed risk scores and component breakdown for all yield protocols
portfolio_viewReadCheck current positions, allocation %, weighted APY
wallet_balanceReadCheck token balance of a wallet on a specific chain
wallet_get_deposit_addressReadResolve your Bundie smart-wallet deposit address (same on every EVM chain)
wallet_wait_for_depositReadPoll a wallet until an incoming balance reaches a threshold
vault_depositWriteDeposit assets into your Bundie Account
vault_withdrawWriteWithdraw assets from your Account back to your wallet
strategy_depositWriteDeposit into a cross-chain yield strategy
strategy_withdrawWriteWithdraw from a strategy position
bridgeWriteBridge USDC/USDT between any supported chains via Relay Protocol
bridge_statusReadCheck the status of a Relay Protocol bridge request
yields_buyReadGenerate a payment link to buy crypto with a credit card or bank transfer
wallet_analyzeAIFull wallet analysis - risk profile, behavior, idle assets
wallet_recommendAIAI-recommended yield bundle via Bull/Bear/Moderator debate
portfolio_rebalanceAICompare current vs optimal allocation, suggest or auto-execute rebalance
wallet_migrateAIFind migration opportunities from external DeFi
portfolio_preferencesStateSet yield selection rules for the session

Example Usage

User: "Where should I put my 5000 USDC to earn yield?"

Agent: "Based on your Moderate risk profile, here's the AI-recommended bundle:
  - 40% Morpho USDC on Arbitrum (9.1% APY, Risk: 92/100)
  - 35% Fluid USDC on Base (8.5% APY, Risk: 88/100)
  - 25% Euler USDC on Optimism (7.8% APY, Risk: 95/100)
  Blended APY: 8.5%

  Want me to deposit?"

How It Works

The MCP server connects to Bundie infrastructure:

  1. Yield Aggregator - indexes opportunities across EVM chains and multiple protocols (Morpho, Fluid, Euler, Silo, Yearn, Centrifuge, Ethena, and more)
  2. AI Risk Engine - scores every yield source on security, liquidity, maturity, and centralization (0-100 scale)
  3. Bundle Builder - a Bull/Bear/Moderator multi-agent debate constructs diversified allocations matched to your risk profile

Funds live in your per-chain Bundie Account (a personal smart contract), and your signing wallet is a non-custodial smart wallet — Bundie never holds your keys. Cross-chain routing uses LayerZero.

Self-Hosting

For developers who want to run their own instance:

{
  "mcpServers": {
    "bundie": {
      "command": "npx",
      "args": ["-y", "@bundie/evm-mcp"],
      "env": {
        "BACKEND_URL": "https://backend.bundie.fi",
        "BACKEND_API_KEY": "your-key",
        "ANALYZER_URL": "https://ai.bundie.fi",
        "ANALYZER_API_KEY": "your-key"
      }
    }
  }
}

Contact info@bundie.fi for API keys.

Security

  • Non-custodial - Bundie never holds your private keys
  • Hosted server - API keys managed server-side, users need zero configuration
  • No source maps - compiled output cannot be reverse-engineered