MCP overview
Reqistry exposes a remote MCP server so coding agents can use the same catalog you browse — inside the IDE, while planning code.
Endpoint https://mcp.reqistry.dev/mcp · Streamable HTTP · No Reqistry account or key required · Public · Version 2.0.0
What it does
Read-only distribution: agents discover APIs, inspect trust/health, compare, and suggest alternatives — without you leaving the session. Stateless transport; each HTTP request builds a fresh MCP server and forwards to the REST API.
Client → server
bash
Agent asks: "Find reliable free weather APIs that don't require OAuth."
→ tool: recommend_apis({ limit: 5 }) is not enough → search + filter on trust/cors/pricing
→ tool: get_api({ slug: "open-meteo" }) + get_api_trust_score + compare_apis
Agent asks: "Suggest alternatives to this dead API."
→ tool: suggest_alternatives({ id: "dead-api-id" })Discovery
Server metadata at /.well-known/mcp/server.json and /server-card.json, plus 4 prompts (find_free_no_auth_api, assess_production_safety, suggest_dead_api_alternatives, build_api_stack).