MCP Server

The MCP server that connects Claude Desktop, Cursor, and other agents to Yield.xyz.

The Yield.xyz MCP Server exposes 7 structured tools that Claude uses to interact with Yield.xyz directly within a conversation.

Endpoint: https://mcp.yield.xyz/mcp

Verify the server is live:

GET https://mcp.yield.xyz/health
{ "status": "ok", "service": "yield-mcp-server" }

A 200 OK confirms the server is healthy and ready to accept tool calls.

No API key required for testing.

What is MCP?

The Model Context Protocol is an open standard from Anthropic that lets AI models connect securely to external APIs and tools through a standardised client-server interface.

Without MCP, Claude has no live access to on-chain yield data. With it, yields_get_all, actions_enter, and the other 5 tools become callable directly in conversation — with real APYs, live TVL, and chain-correct unsigned transactions returned in response.

Quick Start

Method 1: Claude Connector (no local setup)

Requires Claude Pro, Max, or Enterprise.

  1. Go to Claude → Settings → Connectors
  2. Click Add connector → Custom MCP server
  3. Enter:
    • Name: Yield-AgentKit
    • URL: https://mcp.yield.xyz/mcp
  4. Click Connect

Enterprise / Team: A workspace admin must first enable custom connectors in Organisation Settings → Connectors.

Method 2: Claude Desktop

Open Claude Desktop → Settings → Developer → Edit Config and add:

{
  "mcpServers": {
    "yield-agentkit": {
      "command": "npx",
        "args": ["-y", "mcp-remote", "https://mcp.yield.xyz/mcp"]
    }
  }
}

Save and restart Claude Desktop.

Method 3: Claude Code

# Local (private to you)
claude mcp add --transport http yield-agentkit https://mcp.yield.xyz/mcp

# Project scope (shared via version control)
claude mcp add --transport http yield-agentkit --scope project https://mcp.yield.xyz/mcp

What's Next


What’s Next