Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

io.github.omarkeshk/council-ai

io.github.omarkeshk/council-ai

Multi-LLM council: 25+ frontier models in parallel, consensus scoring, verdict-first code review.

Uptime
100.0%
1 direct probes · 30d
Response
1304ms
last probe
Tools
10
callable
Resources
0
readable
Prompts
0
available

Tools · 10

council_query

Send a prompt to a council of frontier AI models across 9 labs (Anthropic, OpenAI, Google, xAI, DeepSeek, Qwen, Mistral, Moonshot, z.ai). Returns each model's independent response plus a moderator-syn…

council_result

Fetch the result of a council_query started with async=true. Returns status "running" while the council is still working (wait 30-60 seconds and call again), the full synthesis + per-model responses o…

council_query_with_rag

Like council_query, but first retrieves the most relevant passages from the user's personal Council RAG library (uploaded PDFs, Word docs, contracts, research papers, codebases) and injects them into …

council_review

Multi-model code review. Sends a unified diff (or code snippet) to multiple frontier AI models from different labs in parallel, each acting as an independent reviewer with an explicit verdict + findin…

library_search

Semantic search over the user's Council RAG library (uploaded PDFs, Word docs, contracts, research papers, codebases). Returns top-K chunks with source filename and page number. No model call, no budg…

library_list

List the documents in the user's Council RAG library. Returns id, filename, source type, ingestion status, chunk count, and upload date for each document. No retrieval, no budget consumption.

library_upload

Upload a document into the user's Council RAG library so future council_query_with_rag and library_search calls can retrieve it. Accepts PDF, Word (docx), text, and markdown files as base64 — images a…

library_delete

Permanently delete a document from the user's Council RAG library — the record, every indexed chunk, AND the stored file are removed. This cannot be undone; re-adding the document requires uploading i…

council_models

List the AI models available to the current user. Returns ID, provider, tier, context window, and capability flags (web search, vision, streaming). Use the IDs returned here as the `models` array argu…

council_usage

Return the user's current monthly cost-budget consumption (current spend, budget cap, percentage used, days until reset). Use to decide whether to warn the user before invoking another council_query, …

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "io.github.omarkeshk/council-ai": {
      "url": "https://mcp.council-ai.app/mcp",
      "transport": "streamable-http"
    }
  }
}