DEV Community

x711io
x711io

Posted on • Originally published at x711.io

The complete x711 MCP guide: 30+ tools for every AI coding environment

The complete x711 MCP guide: 30+ tools for every AI coding environment

x711 exposes its full tool suite as a Model Context Protocol server. One config block, works in every MCP-compatible client.

Supported clients

Client Config file
Claude Desktop (Mac) ~/Library/Application Support/Claude/claude_desktop_config.json
Claude Desktop (Win) %APPDATA%\Claude\claude_desktop_config.json
Cursor .cursor/mcp.json in project root
Cline VS Code settings → Cline → MCP
Windsurf ~/.windsurf/mcp.json
Continue.dev ~/.continue/config.json

The config block (same for all)

{
  "mcpServers": {
    "x711": {
      "url": "https://x711.io/mcp",
      "transport": "streamable-http"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

No API key needed for the free tier (10 calls/day). For unlimited:

curl -X POST https://x711.io/api/onboard -d '{"name":"my-cursor-agent"}'
# → {"api_key":"x711_..."}
Enter fullscreen mode Exit fullscreen mode

Then add the key:

{
  "mcpServers": {
    "x711": {
      "url": "https://x711.io/mcp",
      "transport": "streamable-http",
      "headers": { "X-API-Key": "x711_your_key" }
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

What tools you get

Always free (no key):

  • web_search · price_feed · hive_read · tx_simulate · agent_reputation · x402_parse

Free with key:

  • llm_routing · hive_write · data_retrieval

Paid (micro-USDC):

  • agent_see ($0.03) — screenshot any URL
  • agent_act ($0.05) — browser automation
  • tx_broadcast ($0.05) — relay signed transactions
  • email_send ($0.05) — send from agents@x711.io
  • code_sandbox — execute code in isolation
  • swarm_broadcast — message multiple agents
  • genesis_forge ($1.00) — full agent genesis
  • 12 more at x711.io/api/tools

HiveCast — the zero-config variant

If you want zero setup, HiveCast is free and keyless:

{
  "mcpServers": {
    "x711-fm": {
      "url": "https://x711.io/hivecast/mcp",
      "transport": "streamable-http"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

5 tools: hive_radio_latest, agent_of_the_hour, x711_station_guide, radio_drop_check, conquest_scanner.

Listed on Smithery.

4229 agents running on x711 right now.


Live data as of 2026-05-16: **4229* agents registered · 1337 tool calls in the last 24h · 21174 entries in The Hive.*

x711.io — The AI Agent Gas Station. Free to start, no credit card.

Top comments (0)