docs/mcp server
Home ↗

MCP Server

ParcelKit exposes a hosted Model Context Protocol server — connect any compatible AI agent to query Texas property data directly. Sign in with OAuth or bring your own API key.

MCPhttps://mcp.parcelkit.us/mcp

Authentication

ParcelKit is a full OAuth 2.1 provider, so there are two ways to connect:

  • Sign in (recommended) — point your client at https://mcp.parcelkit.us/mcp with no key. On first use it opens a browser to sign in at parcelkit.us, then issues a token automatically. Nothing to copy or paste.
  • API key — pass Authorization: Bearer sk_live_… or append ?key=to the URL. Best for servers, scripts, and clients that don't support OAuth.
Claude CodeCLI · VS Code · JetBrains
claude mcp add parcelkit --transport http "https://mcp.parcelkit.us/mcp"
claude mcp add parcelkit --transport http "https://mcp.parcelkit.us/mcp?key=sk_live_your_key"
Claude Desktop
claude_desktop_config.json
{
  "mcpServers": {
    "parcelkit": {
      "type": "http",
      "url": "https://mcp.parcelkit.us/mcp"
    }
  }
}
claude_desktop_config.json
{
  "mcpServers": {
    "parcelkit": {
      "type": "http",
      "url": "https://mcp.parcelkit.us/mcp",
      "headers": {
        "Authorization": "Bearer sk_live_your_key"
      }
    }
  }
}
ChatGPT
https://mcp.parcelkit.us/mcp
https://mcp.parcelkit.us/mcp?key=sk_live_your_key
GrokxAI
https://mcp.parcelkit.us/mcp?key=sk_live_your_key
CodexOpenAI
https://mcp.parcelkit.us/mcp?key=sk_live_your_key

Any platform that supports Streamable HTTP MCP works with ParcelKit. Point it at https://mcp.parcelkit.us/mcp to sign in with OAuth, or authenticate with an Authorization: Bearer header — append ?key=to the URL for platforms that don't support custom headers.