We added an MCP endpoint to our AI status hub — query 77 services from Claude #806
Prismor
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Pre-submission Checklist
What would you like to share?
Prismix is a free status monitoring hub for 77 AI services — OpenAI, Anthropic, Cursor, GitHub Copilot, Groq, Mistral, ElevenLabs, Replicate, and more. It tracks live status, 24h latency sparklines, and incident history across all of them in one place.
One of the things we added is an MCP endpoint so Claude can answer status questions directly, without leaving your editor.
Setup
{ "mcpServers": { "prismix-status": { "url": "https://prismix.dev/api/v1/mcp" } } }No API key, no account. After restarting Claude Desktop, you can ask things like:
How the MCP endpoint works
The endpoint lives at
/api/v1/mcpon Cloudflare Workers. Workers are stateless edge functions, so we use Streamable HTTP transport — each request is a self-contained POST/GET rather than a persistent connection. It reads fresh data from KV on every call, which is fine since we want current status anyway.Tools exposed:
get_service_status,list_all_services,list_incidents.What we noticed
On the web dashboard, OpenAI and Anthropic dominate traffic — people checking manually. Through the MCP endpoint, Cursor and GitHub Copilot get queried just as often. Makes sense: those are editor-native tools. When they break, you're already talking to Claude.
Happy to answer questions about the implementation or the data.
Relevant Links
Beta Was this translation helpful? Give feedback.
All reactions