MCP server

Use AI assistants to search through Exacta indexes.

What this is

Exacta exposes its search engine over the Model Context Protocol (MCP). Point any MCP-compatible AI client at the endpoint below and the model can list indexes, run searches, and pull documents on your behalf. Free, no account, no API key, no rate-limit ceiling beyond what the public API already enforces.

Endpoint

https://mcp.polymood.net

Transport: streamable HTTP. Read-only. No authentication.

Tools

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "exacta": {
      "url": "https://mcp.polymood.net",
      "transport": "streamable-http"
    }
  }
}

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "exacta": {
      "url": "https://mcp.polymood.net"
    }
  }
}

Other clients

Any client that speaks streamable HTTP MCP can connect. Codex CLI, Continue, Cline, and others ship with MCP support. Point them at the endpoint above.

Example session

Once connected, you can ask the model things like:

Limits and fair use

The MCP server forwards requests to the public Exacta API. The same per-IP rate limits apply. If you plan to run something at scale please get in touch first.

← back