npm @wheelofheaven/mcpstreamable-httpupdated 17d ago
Read-only MCP server for the Wheel of Heaven corpus. It wraps the static JSON API at api.wheelofheaven.world so AI agents can search and retrieve the corpus with full epistemic metadata (claim types, editorial passes, citations).
¿Qué puedes hacer con corpus?
mcp.wheelofheaven.world
Read-only MCP server for the Wheel of Heaven corpus. It wraps the static JSON API at api.wheelofheaven.world so AI agents can search and retrieve the corpus with full epistemic metadata (claim types, editorial passes, citations).
Design rationale and tool-surface spec: .claude/plans/strategy-mcp-server.md in the org .claude repo.
Endpoints
/mcp— Streamable HTTP (canonical)/sse— legacy SSE transport/— server info (JSON)
Install
Remote (recommended — nothing to run locally):
claude mcp add --transport http wheel-of-heaven https://mcp.wheelofheaven.world/mcp
Local stdio via npm (@wheelofheaven/mcp):
npx -y @wheelofheaven/mcp
Registry listing: world.wheelofheaven.mcp/corpus in the official MCP registry.
Tools
Fact layer — source-grounded data, no interpretation applied:
| Tool | Purpose |
|---|---|
search_corpus |
Fuzzy full-text search over wiki, timeline, library books, articles, and news (~290 documents; token-AND with OR fallback) |
get_entry |
One wiki/timeline/articles/news entry as markdown with claim_type, editorial_pass, typed related-content edges, and canonical citation URLs; 9-language support via lang |
get_passage |
A chapter of a digitized primary source text as numbered paragraphs with stable reference IDs (e.g. GEN-1:26); ref filters to one verse |
get_source |
Bibliography lookup by stable ID or search — every record carries the source-program classification (family, stance, relation), critical sources included |
compare_traditions |
Rows from the comparative datasets: flood-myths, divine-council-index, theomachy-crossrefs, world-ages, prophets-and-religions |
query_graph |
Typed 1-hop ego network of any corpus node (see_also, in_body, cites_source, same_tradition, same_age, comparison_of) |
Interpretation layer — explicitly the project's own reading, labeled as such:
| Tool | Purpose |
|---|---|
get_interpretation |
The Wheel of Heaven framework's reading of a topic (curated context documents, or the closest wiki entry), always carrying an interpretation-layer notice |
get_method |
The editorial methodology: claim-type taxonomy, six-source rule, editorial passes — how to weigh everything else |
Meta:
| Tool | Purpose |
|---|---|
get_glossary_term |
Core terminology with renderings in all 9 site languages (exact-id match first) |
Resources: the six /v1/context/* narrative documents (woh://context/{overview,hypothesis,terminology,timeline,sources,method}) plus woh://llms.txt.
Development
npm install
npm run dev # wrangler dev on :8787
npm run typecheck
npm run deploy # wrangler deploy (needs Cloudflare auth)
The server is stateless over the upstream API: every tool call fetches
api.wheelofheaven.world/v1/…, with the ~600 KB search corpus cached
in-memory per isolate for one hour (matching the API's edge-cache TTL).
Architecture
- Cloudflare Workers +
agentsSDK (McpAgentDurable Object) src/server.ts— transport-agnostic tool registration (reused by the future npm stdio build)src/api.ts—/v1/client + search-corpus cachesrc/html.ts— deterministicbody_html→ markdown conversion
Related repositories
- api.wheelofheaven.world — the static JSON API this server wraps
- www.wheelofheaven.world — the human-facing site
- core — the research corpus (claim model;
get_claimlands here in v2)
License
CC0-1.0 — like the corpus itself.
Instalación
Añade corpus a tu cliente. Elige el que uses.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://mcp.wheelofheaven.world/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @wheelofheaven/mcpcodex mcp add mcp -- npx -y @wheelofheaven/mcpamp mcp add mcp -- npx -y @wheelofheaven/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@wheelofheaven/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @wheelofheaven/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
9 herramientas
corpus expone 9 herramientas a un agente conectado.
- search_corpus
- Fuzzy full-text search over wiki, timeline, library books, articles, and news (~290 documents; token-AND with OR fallback)
- get_entry
- One wiki/timeline/articles/news entry as markdown with `claim_type`, `editorial_pass`, typed related-content edges, and canonical citation URLs; 9-language support via `lang`
- get_passage
- A chapter of a digitized primary source text as numbered paragraphs with stable reference IDs (e.g. `GEN-1:26`); `ref` filters to one verse
- get_source
- Bibliography lookup by stable ID or search — every record carries the source-program classification (family, stance, relation), critical sources included
- compare_traditions
- Rows from the comparative datasets: flood-myths, divine-council-index, theomachy-crossrefs, world-ages, prophets-and-religions
- query_graph
- Typed 1-hop ego network of any corpus node (`see_also`, `in_body`, `cites_source`, `same_tradition`, `same_age`, `comparison_of`)
- get_interpretation
- The Wheel of Heaven framework's reading of a topic (curated context documents, or the closest wiki entry), always carrying an interpretation-layer notice
- get_method
- The editorial methodology: claim-type taxonomy, six-source rule, editorial passes — how to weigh everything else
- get_glossary_term
- Core terminology with renderings in all 9 site languages (exact-id match first)
Puntuación
66 / 100
Buena
- Documentación17/25
- Mantenimiento19/25
- Confianza9/20
- Capacidad6/15
- Instalación15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 10 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 9 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Historial de versiones
| Versiones | Publicada |
|---|---|
| 0.1.1Última | 6 ago 2026 |
| 0.1.0 | 5 ago 2026 |