Start setup
01 / Agents / MCPExport rebuilt

Use with agents

The Field Guide already ships public records as JSON. This page is the map for AI agents and MCP clients: discover, search and fetch those records — including paste-ready prompts — without scraping HTML. Questionnaire answers stay in the visitor’s browser.

Do not invent Grok Bot product claims. Quote a record id, its source URL or provenance, and the date it was last verified. If tier is community and confidence is low, say so. If the export does not hold the answer, say that. Check plan eligibility, platforms and pricing on docs.x.ai/grok-bot before acting.

Add the MCP server in Cursor

Remote Streamable HTTP. No install. The server only reads the public library.

{
  "mcpServers": {
    "grokbot-db": {
      "url": "https://www.grokbotdb.com/api/mcp"
    }
  }
}

Paste that into Cursor Settings → MCP. Some builds also accept "type": "http" next to url. Local checkout instead:

{
  "mcpServers": {
    "grokbot-db": {
      "command": "node",
      "args": ["mcp/stdio.cjs"],
      "cwd": "/absolute/path/to/grokbot-db"
    }
  }
}

MCP tools

ToolWhat it returns
get_statusLibrary health and counts from status.json
search_recordsText search with optional collection / tier / status filters
get_recordOne record by id
list_promptsPaste-ready prompt bodies
setup_overviewHow the personal/business setup ZIP flow works (static site copy)

HTTP JSON

Open CORS. Use these when you do not want to download the whole export. OpenAPI: /api/openapi.json.

EndpointPurpose
GET /apiCatalog of endpoints and tools
GET /api/statusSame health object as /data/status.json, plus citation reminders
GET /api/search?q=Filtered hits. Optional collection, tier, status, subject, limit
GET /api/record?id=Full record or nearby id suggestions
GET /api/promptsOptional attach_to=bot_description|routine|message|skill
GET /api/setupSetup ZIP flow. Not a visitor’s answers
GET /api/changelogJSON mirror of /feed.xml
POST /api/mcpMCP JSON-RPC (Streamable HTTP)

Privacy boundary

Personal and business questionnaires keep answers in the current tab. They do not create live Bots or send answers here. This interface cannot read a draft, a ZIP, or anything behind sessionStorage. Use personal setup or business setup in a browser for that work.