MCP setup
Connect your agent runtime to the public Blueprint MCP endpoint in three steps.
The endpoint
The public MCP endpoint is https://aidesignblueprint.com/mcp. It uses JSON-RPC 2.0 over HTTP with stateful sessions (initialize → tools/call → DELETE). The protocol version is 2025-11-25. No API key is required for anonymous read-only tools.
Proof calls
Run list_clusters() first to confirm the session and see the top-level doctrine categories. Then run search_examples(query="orchestration visibility steering", limit=3) to validate search. Both calls should complete in under two seconds on the first session.
Tool selection guidance
Use get_principle(slug) or get_example(slug) when you know what you need — these are faster and cheaper than bulk listing. Use search_principles or search_examples when the slug is unknown. Use list_clusters() only for discovery or to surface the full doctrine map. Avoid list_principles() on every call — it returns all principles and adds tokens your model must process.
Verified compatibility
Endpoint health and native client registration are not the same thing. This section separates the transport reality, the recommended fallback, and the highest-confidence setup path.
Also in this section