Connect Cursor AI Editor to Live Telemetry
Debug server outages, check API endpoint latencies, and inspect server load directly inside your Cursor editor chat window while coding.
`.cursor/mcp.json` Workspace Setup
Add this file to your project root or configure in Cursor Settings → Features → MCP.
{
"mcp": {
"servers": [
{
"name": "MonitorHub AI Platform",
"url": "https://mcp.monitorhubs.com/sse",
"headers": {
"Authorization": "Bearer mcp_sk_live_YOUR_KEY_HERE"
}
}
]
}
}Two Ways to Connect Cursor
Choose the setup method that works best for your team workflow.
Cursor Settings GUI
Best for personal developer environment across all projects.
1. Press Ctrl + Shift + J (or Cmd + ,) to open Settings.
2. Navigate to Features → MCP Servers → click + Add New MCP Server.
3. Set Server Type: SSE, Server URL: https://mcp.monitorhubs.com/sse.
4. Add Header: Authorization: Bearer YOUR_KEY.
Project Workspace File
Best for sharing MCP configuration with your dev team via Git repository.
1. Create a folder named .cursor in your project root.
2. Create .cursor/mcp.json and paste the JSON snippet above.
3. Reload Cursor workspace. The Monitor Hub tools will be available in Cursor Chat!
Developer Scenarios in Cursor Chat
"@monitors Is api.example.com responding slowly? Show me average latency over the last 24h."
"@servers What is the RAM and CPU load on server-01 right now?"
"@incidents Are there any active incident alerts affecting our production database?"