MCP Server

    The Eziah AI MCP server exposes the research corpus and ontology as read-only tools over the Model Context Protocol. It is intended for AI assistants, agentic clients, and machine consumers that need canonical Eziah AI sources.

    All returned research and ontology URLs are canonical eziah.ai URLs.

    Endpoint

    Canonical endpoint:

    https://mcp.eziah.ai

    Transport: MCP Streamable HTTP · Protocol version: 2025-11-25 · Access: public, read-only.

    This is a machine endpoint. Requests without Accept: text/event-stream correctly receive HTTP 406 — it is not a browsable page.

    Tools

    • list_papers
      List every Eziah AI research paper — slug, title, short description, tags, year.
    • get_paper
      Full metadata for one paper by slug — title, abstract, summary, key concepts, canonical URL, PDF.
    • list_ontology_terms
      List every term in the Eziah AI ontology. Optional doctrine-group filter.
    • get_ontology_term
      Full canonical definition for one ontology term by slug.
    • search_corpus
      Keyword search across papers and ontology terms; unified ranked results.

    Client configuration

    Minimal MCP client configuration (Claude Desktop, Cursor, and compatible clients):

    {
      "mcpServers": {
        "eziah-research": {
          "url": "https://mcp.eziah.ai"
        }
      }
    }

    Verify with curl

    MCP initialize handshake:

    curl -N -X POST https://mcp.eziah.ai \
      -H 'Content-Type: application/json' \
      -H 'Accept: application/json, text/event-stream' \
      -d '{
        "jsonrpc": "2.0",
        "id": 1,
        "method": "initialize",
        "params": {
          "protocolVersion": "2025-11-25",
          "capabilities": {},
          "clientInfo": { "name": "curl", "version": "0" }
        }
      }'

    Eziah AI — Look Into The Future