MCP Queen Registry
OfficialMCP Queen is a verified, evidence-based registry and discovery server for the MCP ecosystem, using deterministic probe grades and verbatim observations to help you find, evaluate, and report on MCP servers.
Search for MCP servers (
search_servers): Describe tasks in natural language and filter by grade, authentication, latency, or category to get ranked results.Search for tools (
search_tools): Find specific tool capabilities (e.g., "query postgres") across graded servers, returning the matching tool, its host server's grade, and the connection endpoint.List top-graded servers (
list_grades): View a leaderboard of highest-scoring servers with their grade, score (0–100), latency, tool count, and authentication state.Get server grade (
get_server_grade): Retrieve the complete deterministic grade and verbatim probe evidence for any server by name, including reachability, protocol, tooling, latency, and provenance.Get a Trust Receipt (
get_trust_receipt): Obtain a comprehensive evidence receipt covering operational grade, security, data integrity, citation quality, claim verification, and reviewed real-usage field reports. Missing evidence is explicitly marked as unaudited, never as a pass.Search trust evidence (
search_trust_evidence): Query published observations and field reports by keyword, status, or dimension (e.g., security, data integrity). Results are returned as verbatim dated observations, not synthetic scores, helping you identify servers with citations, access caveats, unverifiable claims, or security concerns.Submit feedback (
submit_feedback): Report real-world usage experiences (what worked, failed, or surprised) about a specific server. Reports are quarantined for human review and are never auto-published or used to directly affect grades.
Allows Cloudflare Agents to discover and evaluate MCP servers.
Provides Hugging Face agents with tools to search and verify MCP servers.
Provides LangChain agents with tools to search and verify MCP servers.
Allows OpenAI ChatGPT, Codex, and Responses API to discover and evaluate MCP servers before committing to them.
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., "@MCP Queen Registrylist the top 10 MCP servers"
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.
mcpqueen.com — the evidence layer for MCP
LIVE at https://mcpqueen.com (Cloudflare Worker, launched 2026-07-12). Crawls the official MCP registry, probes every remote server, grades it deterministically with verbatim evidence, and publishes the results. Evidence discipline from Constat/Clarity, personality on top.
Why this is different (for agents and humans alike)
MCP Queen is the evidence layer for the MCP ecosystem. Every other MCP directory lists; this one verifies. Each remote server is probed live over streamable HTTP and graded on five criteria — and every point carries the verbatim observation that earned it. Unverifiable dimensions (auth-gated tooling) are marked provisional, never guessed. No stars, no votes, no pay-to-rank — probes only, continuously re-run. Separate Trust Receipts publish dated security/access, data-integrity, citation, claim-verification, response-benchmark, and reviewed field evidence without collapsing it into a misleading trust score.
Agents: connect to https://mcpqueen.com/mcp (streamable HTTP, no auth)
and use search_servers to find working, graded servers for a task before
you commit to one. Machine surfaces: /api/grades.json
· /api/changes.json ·
/llms.txt. Setup guides:
/integrations. Registry name:
com.mcpqueen/registry.
Related MCP server: MCP Registry Server
Connect
mcpqueen is a remote, no-auth, effectively read-only MCP server — safe to keep
connected as your discovery broker (only submit_feedback writes, and it just
enqueues a quarantined field report). Ask your agent to search_servers for a task
before it commits to an MCP.
Claude Code (native HTTP):
claude mcp add --transport http mcpqueen https://mcpqueen.com/mcpOpenClaw / Claude Desktop / any stdio client — via the mcp-remote bridge; add
to your mcpServers config (~/.openclaw/openclaw.json, claude_desktop_config.json, …):
{
"mcpServers": {
"mcpqueen": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcpqueen.com/mcp"]
}
}
}OpenAI: ChatGPT and Codex
MCP Queen can be registered directly as a private plugin/connector; no SDK, Docker image, or local command is required:
In ChatGPT, open Settings → Security and login and enable Developer mode.
Open ChatGPT Plugins, select +, and choose the option to add an MCP server.
Enter
https://mcpqueen.com/mcpas a universal, no-auth remote MCP URL.Test with: “Find a well-maintained, no-auth MCP server for GitHub issue triage. Explain the evidence and any caveats.”
For an OpenAI Responses API demo, Node 18+ is enough:
export OPENAI_API_KEY="your-api-key"
npm run demo:openaiPass a custom prompt after --:
npm run demo:openai -- "Find an MCP server that can search FDA 510(k) records"The demo allowlists only MCP Queen's read-only discovery and evidence tools.
submit_feedback is intentionally excluded.
For public distribution in ChatGPT and Codex, create a With MCP submission
in the OpenAI plugin portal and submit
the same universal endpoint. OpenAI's public review also requires verified
publisher identity, public support/privacy/terms URLs, accurate tool safety
annotations, starter prompts, and reviewer test cases.
The ready-to-paste listing copy and review cases are in
docs/openai-submission.md. The timed recording
plan, narration, captions, chapters, and visual assets are documented in the
OpenAI demo production kit.
Framework and agent examples
Runnable examples are organized under examples/integrations:
Stack | Example | Needs a model key? |
LangChain | No; calls a tool directly | |
LlamaIndex | No; calls a tool directly | |
Cloudflare Agents | No separate provider key | |
Hugging Face | Yes, |
All use the same public https://mcpqueen.com/mcp Streamable HTTP endpoint.
The agent examples exclude submit_feedback from automatic model access.
Before a release or directory submission, run the reusable artifact validator:
npm run distribution:check
npm run distribution:check:liveIt checks the prepared package and live MCP surfaces. Publisher identity, domain challenge tokens, demo recording, and final portal confirmations remain explicit manual gates.
The measurable channel plan is in
docs/distribution-strategy.md. Safe
unattended maintenance and stop conditions are defined in
docs/autonomous-operations.md and
AGENTS.md.
Architecture (single Worker)
See the system architecture and verification flow for the ecosystem-level diagram and the Find → Verify → Connect decision loop.
src/worker.ts— everything: registry crawler, prober/grader, HTML pages, JSON API, and mcpqueen's own MCP endpoint.public/— static landing (crown data-rain + Vex the fox) served via the assets binding; the Worker handles all non-asset routes.D1 database
mcpqueen(schema.sql): servers, probes, latest_grades, trust_observations, evidence_benchmark_runs, feedback (quarantined agent field reports), meta (sync cursor).Cron
*/15 * * * *: sync 4 registry pages + probe the 30 stalest remotes (~2,900 probes/day; full re-probe cycle ≈ 2.7 days over ~7.7K remotes).Cron
17 7 * * *: run one safe, read-only response audit against an eligible evidence/citation tool and publish dated results to its Trust Receipt.
Routes
Route | What |
| landing (static) |
| leaderboard + methodology |
| per-server grade with evidence + probe history |
| grades as JSON (CORS open) |
| MCP server: capability discovery plus |
| Setup matrix and runnable framework/agent examples |
| Human-reviewed reports from agents that actually exercised a server |
| Per-server operational, security, data-integrity, citation and claim evidence |
| for-agents page |
| operator endpoints (key-gated) |
Grading rubric (deterministic, every point carries its observation)
reachability 25 · protocol 15 · tooling 35 (tools/list, described %, typed %,
description depth) · latency 10 · provenance 15 (metadata + namespace↔domain
match). Auth-gated servers are scored on the verifiable subset and marked
provisional. Agent feedback via submit_feedback is quarantined for human
review — never auto-published, never affects grades directly.
Trust Receipts remain distinct from that grade. Safe response audits record usable-call rate, semantic upstream failures, returned PMID/DOI identifiers, and identifier resolution against authoritative sources. Missing evidence is labeled unaudited rather than treated as a pass.
Deploy
npm run deploy # wrangler deploy (any Cloudflare API token with Workers + D1 write)
npm run db:schema # apply schema.sql to remote D1Custom domains mcpqueen.com + www are attached to the Worker (moved off the
Pages project 2026-07-12; mcpqueen.pages.dev still exists as a static preview of
public/ only — it has no /registry).
Maintenance
Related MCP Servers
- AlicenseCqualityDmaintenanceEasily find MCP servers using our MCP registry. Search with natural language.Last updated15MIT
- Alicense-qualityDmaintenanceEnables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.Last updated413MIT
- Flicense-quality-maintenanceEnables querying and searching the MCP Hub database to discover MCP servers, view server details, find top servers by popularity or recency, and identify top contributors.Last updated
- AlicenseAqualityDmaintenanceA comprehensive MCP server for checking package versions and rating package quality across Python (PyPI), JavaScript/TypeScript (npm), Dart (pub.dev), and Rust (crates.io) ecosystems.Last updated5MIT
Related MCP Connectors
Independent A-F trust grade for any MCP server, watched for drift. Free, never for sale.
Grade MCP servers A to F with the open behavioral litmus. npm: full toolset; hosted: lookups only.
Trending/new/changed MCP servers: a liveness-probed freshness index + x402-paid change-data API
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/mcpqueen/mcpqueen'
If you have feedback or need assistance with the MCP directory API, please join our Discord server