MCP Server
The MCP server that connects Claude Desktop, Cursor, and other agents to Yield.xyz.
The Yield.xyz MCP Server exposes 22 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.
PricingRead tools are free; wallet actions require x402 payment or an API key after a free tier.
Full details: x402 Payments & Pricing.
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/mcp
Option 1 — CLI
codex mcp add yield-agentkit --url https://mcp.yield.xyz/mcpOption 2 — Config file
Add to ~/.codex/config.toml:
[mcp_servers.yield-agentkit]
url = "https://mcp.yield.xyz/mcp"Option 1 — CLI
gemini mcp add --transport http yield-agentkit https://mcp.yield.xyz/mcpOption 2 — Config file
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"yield-agentkit": {
"type": "http",
"url": "https://mcp.yield.xyz/mcp"
}
}
}Add to your config file:
{
"mcpServers": {
"yield-agentkit": {
"url": "https://mcp.yield.xyz/mcp"
}
}| Agent | Config file |
|---|---|
| Cursor (global) | ~/.cursor/mcp.json |
| Cursor (project) | .cursor/mcp.json |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
Any MCP-compatible agent can connect using:
- Name: Yield-AgentKit
- URL:
https://mcp.yield.xyz/mcp
Look for "Add MCP server", "Custom tools", or "MCP config" in your agent's settings.
What's Next
| Resource | Link |
|---|---|
| Tool Reference | https://docs.yield.xyz/docs/tool-reference |
| x402 Payments & Pricing | https://docs.yield.xyz/docs/x402-payments-pricing |
| 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 5 days ago

