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_papersList every Eziah AI research paper — slug, title, short description, tags, year.
- get_paperFull metadata for one paper by slug — title, abstract, summary, key concepts, canonical URL, PDF.
- list_ontology_termsList every term in the Eziah AI ontology. Optional doctrine-group filter.
- get_ontology_termFull canonical definition for one ontology term by slug.
- search_corpusKeyword 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" }
}
}'