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.
- Go to Claude → Settings → Connectors
- Click Add connector → Custom MCP server
- Enter:
- Name: Yield-AgentKit
- URL:
https://mcp.yield.xyz/mcp
- 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/mcpWhat's Next
| Resource | Link |
|---|---|
| Tool Reference | https://docs.yield.xyz/docs/tool-reference |
| OpenClaw Skills | https://docs.yield.xyz/docs/openclaw-skills |
| Superskills | https://docs.yield.xyz/docs/superskills |
| Key Rules | https://docs.yield.xyz/docs/key-rules |
Updated 11 days ago
