MCP Infrastructure

Registry of Registries

A catalogue of every known MCP server registry — tagged by audience, content policy, and verification method. The missing layer of MCP infrastructure.

AI clients need to know which registry is safe for which context. A children's app should route to family-safe registries. A developer tool can use any of them. This page is that routing layer — open, crawlable, and free.

Registries
Family-Safe
Developer
Verified
Featured / BTH
Family-Safe
Developer
General / Unfiltered

Known Registries

loading...
Loading registries...

Submit Your Registry

Open to all

Run an MCP registry? Submit it here. We'll list it publicly with its audience tag. No approval needed — submissions go live immediately. Reports of inappropriate classification will be reviewed within 48 hours.

Max 500 characters. Be factual — misleading tags will be corrected.

API

Machine-readable

This directory is fully crawlable. AI clients can use the JSON endpoint to discover registries and route MCP discovery requests by audience.

# List all registries GET https://betterthanhtml.com/mcp-registries # Response shape { "registries": [ { "id": "abc123", "name": "BTH MCP Registry", "url": "https://betterthanhtml.com/mcp-registry.html", "api_url": "https://betterthanhtml.com/mcp-registry", "audience": "family-safe", "description": "...", "has_mcp_tool": true, "verified": true, "submitted_at": "2026-04-15T..." } ], "total": 6, "family_safe_count": 1 } # Submit a registry POST https://betterthanhtml.com/mcp-registries/submit Content-Type: application/json { "name": "My Registry", "url": "https://...", "audience": "developer", "description": "...", "has_mcp_tool": false }