House of Wisdom MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@House of Wisdom MCPGet multiple perspectives on this architectural decision."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
House of Wisdom MCP
What this is — an MCP (Model Context Protocol) server that asks the same question to several different AI model families at once and hands you back every answer, unmerged.
How to read it — What it is → Quick start → The three modes → The two tools → How a call flows → Installation → Configuration. Go to Sharp edges when something surprises you.
Requires — Python 3.10+,
uv/uvx, and at least two enabled models.Reflects code as of — 2026-07-20, commit
7ac2449, package version0.6.1.
The medieval Bayt al-Hikma worked because it was diverse: scholars, translators, and copyists from many traditions read the same questions through different lenses, and the reader weighed the results. This server does the same with models — OpenAI, Anthropic and Google via OpenRouter, DeepSeek, local Ollama, or any OpenAI-compatible endpoint.
What it is, and what it is not
It does | It does not |
Fire N models in parallel on one question | Merge, rank, vote, or summarize their answers |
Return one complete, self-contained analysis per model | Return a single "council answer" |
Optionally let each model read your codebase first (read-only) | Ever write, execute, or network beyond each model's own endpoint |
Tag each answer with the mode it was asked to run in | Tell you which answer is correct |
There is no synthesizer. The caller — your IDE agent — reads every perspective and decides. Treating any single perspective as ground truth defeats the design.
Do not fire the council on every prompt. It costs several model calls and tens of seconds. Use it only when a different model family seeing the problem would plausibly change the outcome. For work that just needs your own focused reasoning, use a single-mind thinking tool instead.
Quick start
# 1. Get a config file
curl -O https://raw.githubusercontent.com/EzzoHamdan/house-of-wisdom-mcp/master/config.example.yaml
# 2. Edit it — the only field you MUST set is `models`, and at least 2 must be enabled.
# 3. Register the server with your MCP client (see Installation for per-client syntax):
# command: uvx
# args: --from git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master
# ai-council --config /absolute/path/to/config.yaml
# 4. Restart the client, then ask your agent to call `list_models`.If list_models returns your roster, the server is loaded. Then try one consult
call in scribe mode — it is the fast path and needs no filesystem access.
The three modes
One argument, mode, decides how much freedom each consultant gets. It is the only knob that
changes behavior at call time.
Mode | Tools | Tool budget | Scope discipline | Use when |
| none | — | — | You already pasted the relevant code into |
| read-only |
|
| You know which files matter and want each model to verify against them |
| read-only |
|
| You do not know which files matter |
With default budgets, wall-clock ordering runs scribe < translator < scholar; absolute
numbers depend entirely on which models you configured and whether they are local or remote.
Nothing enforces that ordering, though — raising max_tool_iterations above
scholar_max_tool_iterations inverts it.
How the effective mode is resolved
Precedence, highest first (synthesis.py::collect_perspectives):
# | Source | Result |
1 |
| that mode |
2 |
| logs a warning, falls through to 3 |
3 | legacy |
|
4 |
|
|
agentic is a deprecated boolean kept so older callers keep working; mode wins whenever both
are passed. scholar can only be reached by asking for it explicitly.
⚠ synthesizer_tools.enabled only picks the default in row 4. It is not a gate: an explicit
mode: "translator" or mode: "scholar" runs the tool loop even when enabled: false.
The two tools
Renamed in v0.5.0.
ai_council→consultandai_council_list_models→list_models. The old names still work — they are accepted as backward-compatible aliases, so clients or scripts registered before the rename keep functioning. Only the new names are advertised, so your agent will discover and useconsult/list_modelsgoing forward.
list_models
Takes no arguments. Returns the configured roster straight from loaded config.
{
"status": "success",
"data": {
"models": [
{"name": "GLM", "model_id": "glm-5.2:cloud", "provider": "custom", "enabled": true},
{"name": "Kimi", "model_id": "kimi-k2.7-code:cloud", "provider": "custom", "enabled": true}
],
"max_models": 3,
"enabled_count": 2
}
}It does not contact any endpoint and does not validate API keys. enabled: true means
"present in config and not switched off", nothing more. Note that models lists every configured
entry; when a consult call names no subset, only the first max_models enabled ones fire, but
any enabled model can be requested by name — see Who actually fires.
consult
Argument | Type | Required | Meaning |
| string | yes | Background. Must be non-empty, max 200,000 characters. In |
| string | yes | Must be non-empty, max 10,000 characters. |
| string | no |
|
| string | no | Absolute path used as the read-only sandbox root. Ignored in |
| string | no | Free text injected into each consultant's system prompt, e.g. |
| array of strings | no | Subset of consultant |
| boolean | no | Deprecated alias: |
Success shape. One entry per model that was dispatched, in roster order:
{
"status": "success",
"data": {
"perspectives": [
{"label": "GLM", "model_name": "GLM", "code_name": "Alpha", "analysis": "...", "status": "ok", "mode": "translator"},
{"label": "Kimi", "model_name": "Kimi", "code_name": "Beta", "analysis": "...", "status": "error", "mode": "translator"}
],
"consensus": {"models_queried": 2, "models_succeeded": 1, "models_failed": 1}
}
}Failed consultants are returned in-band with
status: "error"and the error text sitting inanalysis. The call as a whole still reports"status": "success"as long as at least one consultant succeeded.labelismodel_namenormally, orcode_namewhenanonymous_perspectives: true.consensuscounts nothing about agreement — despite the name, it is a dispatch tally, andmodels_failedis simply the number ofstatus: "error"entries.
Error shape.
{"status": "error", "error": {"code": "...", "message": "...", "type": "...", "details": "..."}, "data": null}
| Fires when |
|
|
| A |
| The fireable roster is empty (startup validation normally prevents this) |
| Every consultant errored or the whole batch timed out |
| Tool name is neither |
| Unhandled exception; |
data is null on every error except ALL_MODELS_FAILED, which carries
{"attempted_models": N, "failed_responses": N}. Note that no individual analyses survive that
path — if you need partial results from a slow batch, raise parallel_timeout rather than
retrying.
How a call flows
MCP client (the orchestrator)
│ consult(context, question, mode?, workspace_root?, scope_hint?, models?)
▼
main.py::_process_ai_council
├─ validate context 1..200,000 chars · question 1..10,000 chars → INVALID_INPUT
└─ roster `models` passed? yes → keep FULL enabled list entries whose name matches
nothing left? → NO_MATCHING_MODELS
no → default window = enabled[:max_models]
▼
synthesis.py::collect_perspectives
├─ mode mode arg > agentic bool > synthesizer_tools.enabled
├─ sandbox workspace_root arg > config workspace_root > process cwd
└─ budget scholar → scholar_max_tool_iterations · else max_tool_iterations
│
├── scribe ───────────► models.py::call_models_parallel
│ one chat call per model · temp 0.7 · max_tokens 8000
│ ⚠ NO concurrency cap — every model fires at once
│
└── translator ───────► models.py::call_models_parallel_agentic
scholar semaphore = max_concurrent_consultants
per consultant, repeat until it answers or budget runs out:
chat(tools=[read_file,list_dir,glob_search,think])
├─ tool_calls? → dispatch in sandbox → append results → loop
└─ plain text? → that is the analysis
budget exhausted → one forced "answer from what you have" turn
temp 0.4 · max_tokens 16000
▼
perspectives[] one per dispatched model, roster order, failures included
▼
MCP client weighs them. No synthesizer runs, in any mode.How a call flows (rendered)
%%{init: {'themeVariables': {'lineColor': '#8b949e'}}}%%
flowchart TD
C([MCP client]) -->|consult| V{{"validate<br/>context ≤200k · question ≤10k"}}
V -->|invalid| E1["INVALID_INPUT"]
V --> S{{"models arg passed?"}}
S -->|"yes: match against ALL enabled"| R1["roster = named enabled models"]
S -->|"no: default window"| R2["roster = first max_models enabled"]
R1 -->|none match| E2["NO_MATCHING_MODELS"]
R1 --> M{{"resolve mode"}}
R2 --> M
M -->|scribe| P["call_models_parallel<br/>no tools · no semaphore"]
M -->|translator| A["call_models_parallel_agentic<br/>budget = max_tool_iterations"]
M -->|scholar| A2["call_models_parallel_agentic<br/>budget = scholar_max_tool_iterations"]
A --> L
A2 --> L
L{{"tool loop, per consultant<br/>capped by max_concurrent_consultants"}}
L -->|tool_calls| T[("sandbox: read_file · list_dir<br/>glob_search · think")]
T --> L
L -->|plain text| O["one perspective per model<br/>errors included in-band"]
P --> O
O --> C
classDef gate stroke-dasharray:4 3;
class V,S,M,L gate;Installation
Prerequisites
Need | Why |
Python 3.10+ |
|
How the server is launched. Verify with | |
Ollama on | Only for local models. Pull tags first ( |
Provider API keys | Only for paid models (OpenAI, OpenRouter, DeepSeek, …). |
Step 1 — write a config file
Start from config.example.yaml, which is fully commented:
curl -O https://raw.githubusercontent.com/EzzoHamdan/house-of-wisdom-mcp/master/config.example.yaml
mkdir -p ~/.config/ai-council && mv config.example.yaml ~/.config/ai-council/config.yaml~/.config/ai-council/config.yaml is the path the server checks when --config is omitted. Any
other location works if you pass --config /absolute/path.yaml.
⚠ If the path you pass to --config does not exist, it is ignored without an error. The
server then boots on built-in defaults, whose roster is three OpenRouter models — so the symptom
of a typo'd path is usually OpenRouter API key is required, not "file not found".
Step 2 — register the server with your MCP client
The launch command is identical everywhere; only the surrounding JSON/TOML differs.
command: uvx
args: --from git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master
ai-council
--config /absolute/path/to/config.yamlThe server key is the display name. The key you give the entry under
mcpServers(House-of-Wisdombelow) is what your IDE shows as the tool prefix, e.g.House-of-Wisdom [consult]. Rename it to whatever you like — it is purely cosmetic and lives in your client config, not in this repo. Theai-counciltoken insideargsis a different thing (the installed console-script name) and must stay as-is.
Claude Desktop — Settings → Developer → Edit Config, which opens
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or
%APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"House-of-Wisdom": {
"command": "uvx",
"args": ["--from", "git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master",
"ai-council", "--config", "/absolute/path/to/config.yaml"]
}
}
}Cursor — same JSON, in .cursor/mcp.json (project) or via Settings → MCP (global).
Kilo Code — same JSON, in the file opened by the MCP Servers panel
(Edit Global MCP → mcp_settings.json, or Edit Project MCP → .kilocode/mcp.json). Kilo
kills a server that is slow to answer, so raise its per-server timeout if you use scholar
mode:
{
"mcpServers": {
"House-of-Wisdom": {
"command": "uvx",
"args": ["--from", "git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master",
"ai-council", "--config", "/absolute/path/to/config.yaml"],
"timeout": 240
}
}
}Claude Code (CLI) — the -- separator matters, otherwise claude parses --from as its own
flag:
claude mcp add House-of-Wisdom -- uvx --from git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master \
ai-council --config /absolute/path/to/config.yamlCodex CLI — ~/.codex/config.toml:
[mcp_servers."House-of-Wisdom"]
command = "uvx"
args = ["--from", "git+https://github.com/EzzoHamdan/house-of-wisdom-mcp@master",
"ai-council", "--config", "/absolute/path/to/config.yaml"]Anything else — any client that speaks stdio MCP can run this server. Only the registration syntax changes.
Step 3 — restart the client
Config is read once at process start. Every config edit or server upgrade needs a client restart.
Step 4 — verify
Call
list_models→ your roster comes back.Call
consultwithmode: "scribe", a shortcontext, and a shortquestion→ each model answers. This isolates model connectivity from filesystem/sandbox concerns.Only then try
translatorwith an explicitworkspace_root.
Configuration reference
Every key, with both defaults
"Built-in" is what you get when the key is absent from your YAML. "Example file" is what
config.example.yaml ships with — these differ, so do not read the example
file as documentation of defaults.
Key | Built-in | Example file | Valid range |
|
|
| 1–10 |
|
|
| 5–600 (seconds) |
|
|
|
|
|
|
| boolean |
|
|
| 1–32 |
| unset | commented out | string |
| unset | commented out | string |
|
|
| boolean |
|
|
| absolute path |
|
|
| 1–128 |
|
|
| 1–256 |
| all four | all four | subset of the four tool names — ⚠ omit the key (null) for all four; |
| 3 OpenRouter models | 6 enabled Ollama + 4 disabled paid | 2–10 entries (10 configured max, 2 enabled min) |
A minimal working config is just:
models:
- name: "GLM"
provider: "custom"
model_id: "glm-5.2:cloud"
base_url: "http://localhost:11434/v1"
api_key: "ollama"
enabled: true
- name: "Kimi"
provider: "custom"
model_id: "kimi-k2.7-code:cloud"
base_url: "http://localhost:11434/v1"
api_key: "ollama"
enabled: trueStartup validation — what stops the server from booting
These are checked at load time. Each exits with Configuration error: … on stderr — which your
MCP client usually surfaces as "server failed to start" — wrapped in a Pydantic ValidationError,
so the strings below appear as a fragment of a longer message rather than on their own.
Rule | Message contains |
At least 2 models must have |
|
At most 10 models configured in total |
|
|
|
Every |
|
Every |
|
|
|
|
|
The base_url requirement is checked independently of api_key (v0.5.1). Previously validation
short-circuited on the presence of api_key, so a custom entry with a key but no base_url was
never checked and the client fell back to OpenAI's default endpoint — silently sending prompts to
api.openai.com. A base_url-less custom entry is now rejected at startup (and guarded again at
client construction).
Model entry fields
Field | Required | Notes |
| yes | Human label. This is the string the |
| yes | Provider's identifier: an Ollama tag, an OpenRouter slug, an OpenAI model name. |
| no (default |
|
| for | OpenAI-compatible |
| for | Overrides the provider-level key for this entry. |
| no (default |
|
| no | Auto-assigned from |
Consultant recipes
Local Ollama — free, api_key can be any non-empty string:
models:
- name: "GLM"
provider: "custom"
model_id: "glm-5.2:cloud" # a tag from `ollama list`
base_url: "http://localhost:11434/v1"
api_key: "ollama"
enabled: trueOpenAI — one shared key at the top of the file:
openai_api_key: "sk-..."
models:
- name: "GPT-5.6-Terra"
provider: "openai"
model_id: "gpt-5.6-terra"
enabled: trueClaude / Gemini / most others via OpenRouter — one key, many families. model_id is the slug
from openrouter.ai/models:
openrouter_api_key: "sk-or-..."
models:
- name: "Claude Opus"
provider: "openrouter"
model_id: "anthropic/claude-opus-4"
enabled: true
- name: "Gemini Pro"
provider: "openrouter"
model_id: "google/gemini-2.5-pro"
enabled: trueDeepSeek direct, Perplexity, Groq, Together, vLLM, LM Studio — anything OpenAI-compatible uses
provider: custom with its own base_url and api_key. Use a ${ENV_VAR} placeholder to keep
the secret out of the file (see Keeping keys out of the YAML):
models:
- name: "DeepSeek-Pro"
provider: "custom"
model_id: "deepseek-chat"
base_url: "https://api.deepseek.com/v1"
api_key: "${DEEPSEEK_API_KEY}" # resolved from the environment at load time
enabled: trueAPI keys — where they are read from
Per model, first match wins:
api_keyon the model entry — always wins for that entry, whatever the provider.The provider-level key (
openai_api_keyforprovider: openai,openrouter_api_keyforprovider: openrouter), which is itself resolved as CLI flag → YAML top-level field → environment variable.
provider: custom entries never fall back to a provider-level key; they require their own
api_key.
The environment variable names are AI_COUNCIL_OPENAI_API_KEY and
AI_COUNCIL_OPENROUTER_API_KEY (v0.5.1 — the fields no longer declare a Pydantic alias, so the
AI_COUNCIL_ prefix applies to them like every other setting). A bare, unprefixed
OPENAI_API_KEY / OPENROUTER_API_KEY in the environment your MCP client launches is not
picked up — set the prefixed name, or pass the key via YAML or the CLI flags.
All settings use the prefix and match case-insensitively:
AI_COUNCIL_OPENAI_API_KEY, AI_COUNCIL_OPENROUTER_API_KEY, AI_COUNCIL_MAX_MODELS,
AI_COUNCIL_PARALLEL_TIMEOUT, AI_COUNCIL_LOG_LEVEL, AI_COUNCIL_MAX_CONCURRENT_CONSULTANTS,
AI_COUNCIL_ANONYMOUS_PERSPECTIVES.
Keeping keys out of the YAML
The config file describes structure (which models, timeouts, modes); secrets belong in the
environment. Keeping config.yaml secret-free means you can hand it to an AI agent to edit, or
even commit it, without leaking a key. Three ways to supply keys without touching the file:
Environment variables — set the
AI_COUNCIL_-prefixed names. For MCP the cleanest place is your client'senvblock, so the server inherits them at launch:"env": { "AI_COUNCIL_OPENAI_API_KEY": "sk-...", "AI_COUNCIL_OPENROUTER_API_KEY": "sk-or-..." }A
.envfile — the server reads one next to the config file and one in the working directory, before it parses any keys. Copy the committed.env.exampleto.env(it's gitignored) and fill it in; use the sameAI_COUNCIL_-prefixed names:AI_COUNCIL_OPENAI_API_KEY=sk-... AI_COUNCIL_OPENROUTER_API_KEY=sk-or-...A real environment variable (e.g. from the client
envblock) always wins over the.envfile.${ENV_VAR}placeholders — anyapi_keyorbase_urlvalue may reference an env var, which is expanded at load time. This is the only secret-free path for a per-modelapi_keyon aprovider: customentry (DeepSeek, Groq, …), since those never fall back to a provider-level key:api_key: "${DEEPSEEK_API_KEY}"A referenced-but-unset variable fails loudly at startup, naming the missing var — it is never silently sent as an empty key.
config.yaml, *.local.yaml, and .env are gitignored, so a filled-in config can't be committed
by accident.
Who actually fires
The per-call roster is built one of two ways, then bounded by concurrency:
configured models ── enabled: true ──► enabled models
│
no `models` arg ◄─────┴─────► `models` arg passed
│ │
[:max_models] match names against ALL enabled models
│ │
default window this call's roster (any enabled model, any position)
└──────────────┬───────────────┘
▼
this call's roster ── semaphore ──► N running at once (translator/scholar only)max_models(1–10) caps the default fan-out — the roster used when a call names no subset. The window is the firstmax_modelsenabled entries by position in the YAML list, not by preference.The per-call
modelsargument resolves against the full enabled list, so any enabled model is reachable by name regardless ofmax_modelsor its position. With eight enabled models andmax_models: 3, asking for the seventh by name fires exactly that model. A named subset is not re-capped tomax_models— the caller chose the models, andmax_concurrent_consultantsstill bounds how many run at once.max_concurrent_consultants(1–32) caps how many tool loops run simultaneously; the rest queue. Match it to your provider's concurrency allowance (Ollama Cloud Pro = 3, Max = 10). ⚠ It is not applied inscribemode — there, every model in the roster fires at once.
The consultant sandbox
In translator and scholar modes each consultant gets its own read-only tool loop, rooted at
workspace_root. These tools are internal to the consultant; they are never exposed to your MCP
client.
Tool | Signature | Behavior |
|
| UTF-8 read, truncated at 200,000 bytes with a |
|
| One entry per line, relative to root, |
|
| Glob relative to root, e.g. |
|
| Echoes the thought back. No I/O. Costs budget on the same terms as the others. |
Restrict the set with synthesizer_tools.allowed_tools; a call to a tool outside the list returns
an error string to the model rather than executing. ⚠ Distinguish the two "empty" cases: omitting
the key (null) permits all four, while allowed_tools: [] permits none — an empty allowlist
advertises no tools, so every consultant loses read access. To narrow the surface, name the tools
you want, e.g. ["read_file", "think"]; to grant everything, leave the key out.
What never happens
No writes, no shell, no network from the tools. The four above are the entire surface (
tools.py::ToolRegistry.call).No read outside
workspace_root. Paths are resolved withPath.resolve()and checked withrelative_to(), so symlinks pointing out of the root are rejected asSandboxViolation(tools.py::ToolRegistry._resolve).No tool call at all in
scribemode.No endpoint contact from
list_models.No merging of perspectives, in any mode.
Budget accounting
The loop stops when the model replies with plain text instead of tool calls, or when the budget is spent — after which it gets one forced turn to answer from what it gathered, and a second nudge if that comes back empty.
⚠ The budget counts rounds, not individual tool calls: one unit per assistant turn that
contains tool calls, however many it contains. A model that requests four files in a single turn
spends one unit, not four — and a think batched alongside them is free. The system prompt tells
the model that each call costs one unit, so most models behave as if the stricter accounting were
real, but a batching model can legitimately read far more of your workspace than the budget number
suggests.
Operational envelope
Values are hardcoded in models.py; listed here because they are not otherwise visible from the
outside.
Path | Temperature |
| Timeout |
| 0.7 | 8,000 |
|
| 0.4 | 16,000 |
|
Empty responses get one automatic retry. Models that return their answer in a reasoning,
thinking, or reasoning_content field instead of content — common with Ollama's cloud
thinking models — are handled by models.py::_extract_text.
Per-provider request adaptation (v0.5.2, models.py::_create_completion): for provider: openai
the output cap is sent as max_completion_tokens instead of max_tokens (newer OpenAI models
reject the latter). If a model still rejects a parameter — e.g. reasoning models accept only the
default temperature: 1 — that parameter is dropped and the call retried (up to three strips).
custom / openrouter endpoints are sent the classic max_tokens / temperature unchanged.
⚠ Because parallel_timeout also bounds the whole batch, and because queued consultants spend
their wait inside that window, a scholar run with more models than
max_concurrent_consultants needs a generous value. When the batch timeout fires, only the
consultants still running are cancelled and marked as timed out; perspectives that already
finished are kept (v0.5.1), so a slow straggler no longer collapses a partial success into
ALL_MODELS_FAILED.
Sharp edges
Known divergences between what the system looks like it does and what it does. Each is verified in code.
⚠ | Detail |
| A default-mode switch, not a capability gate — explicit |
Concurrency cap |
|
Reported | Is the mode you asked for. If agentic setup raises, the run silently degrades to plain no-tool calls but the perspectives are still tagged |
| Changes |
Missing config path |
|
Tool budget | Counts assistant turns containing tool calls, not individual calls. |
Fixed in v0.6.1. The per-call
modelsargument now resolves against the full enabled list, so an explicitly named enabled model is reachable regardless ofmax_modelsor its position in the YAML.max_modelsagain caps only the default (no-subset) fan-out, and theNO_MATCHING_MODELSdetail reports the true full enabled set.config.py::get_enabled_models,main.py::_process_ai_council.
Fixed in v0.5.1. Nine long-standing sharp edges were resolved: the
AI_COUNCIL_env prefix now works (and a bareOPENAI_API_KEYis no longer silently adopted); a batch timeout keeps consultants that already finished;statusis carried explicitly instead of guessed from the text; acustommodel withoutbase_urlis rejected instead of talking toapi.openai.com;allowed_tools: []now permits nothing;code_nameauto-assignment no longer skips names or crashes at 10 models; the advertised version tracks the package;synthesis_model_selection(dead) was removed; and theconsultdescription no longer quotes example-config defaults.
CLI arguments
Flag | Effect |
| Config file. Without it, |
| Overrides |
| Overrides |
|
|
| Overrides the YAML value. |
| Overrides the YAML value. |
Logs go to stderr, which is where MCP clients collect server output. --log-level DEBUG prints
every tool call each consultant makes.
Code map
Concern | Source |
MCP wiring, tool schemas, request validation, error shapes | |
Mode enum, mode resolution, per-mode prompt suffixes, perspective assembly | |
Client construction, parallel dispatch, the tool loop, concurrency semaphore | |
Config schema, defaults, startup validation, YAML/env loading | |
Sandbox, the four tools, path resolution, tool schemas | |
Structured stderr logging |
Run the tests with uv run pytest (or pytest -q inside an activated venv). They cover config
parsing and sandbox path resolution; there is no test that exercises a live model call.
Acknowledgments
Inspired by Cognition Wheel, which established the wisdom-of-crowds approach to multi-model consultation. This project diverges from it in dropping the synthesis step entirely, adding the three named modes, giving every consultant its own read-only investigation loop, and pushing the weighing of perspectives back onto the caller. The medieval House of Wisdom supplied the name and the principle: many lenses, weighed by the reader, not merged by an authority.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/EzzoHamdan/house-of-wisdom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server