Getting Started with Telebugs MCP
Telebugs exposes a Model Context Protocol (MCP) server that lets AI coding tools read your error data and take action on your behalf — directly inside your editor.
Instead of copying stack traces into ChatGPT or Claude, your AI can now:
- Inspect full error reports with backtraces and context
- Search and filter error groups using the same powerful query syntax as the REST API
- Resolve, mute, assign, and annotate issues
- Add notes and manage your error workflow
The MCP integration mirrors the REST API: the same projects, groups, reports, and notes are available, scoped to your account and project memberships.
Quickstart
Get value in under two minutes:
-
Connect your editor Follow the step-by-step instructions in Connecting AI Tools for Cursor, Windsurf, or Claude.
-
Try a prompt Once connected, ask your AI something like:
“List my Telebugs projects and show the open error groups in Production with the most reports this week.”
Or:
“Find the top 5 unresolved error groups in production and summarize what’s happening.”
-
Take action You can then say:
“Resolve group 42 with the note: ‘Fixed by PR #847 — deployed in v1.4.2’”
Or ask it to assign an issue to a teammate, add context, or investigate a specific report.
What You Can Do
Connected AI tools can:
- List your projects and error groups
- Search and filter errors with the same query syntax as the REST API
- Fetch full error reports with backtraces, breadcrumbs, and request context
- List project members to find the right assignee
- Resolve, mute, assign, and annotate error groups
- Create, list, and delete notes on error groups
MCP Endpoint
Your Telebugs instance serves MCP at:
https://your-telebugs-instance.com/mcp
Discovery
MCP clients can discover the server automatically:
curl https://your-telebugs-instance.com/.well-known/mcp.json
Example response:
{
"mcp_endpoint": "https://your-telebugs-instance.com/mcp",
"authorization_servers": ["https://your-telebugs-instance.com"],
"protocol_version": "2025-06-18",
"transport": "streamable-http"
}
Authentication
MCP supports two authentication methods:
- OAuth 2.0 (recommended for AI tools like Cursor and Claude) — see Authentication
- API key — use your existing REST API key as a Bearer token (useful for scripts)
For step-by-step setup in your editor, see Connecting AI Tools.
Managing Connected Apps
After authorizing an MCP client, you can review and revoke access from Account Settings → Connected MCP apps.
Available Tools
Telebugs MCP tools are grouped by resource:
| Resource | Capabilities |
|---|---|
| Projects | List projects and members |
| Error Groups | Search, inspect, resolve, mute, assign, and annotate groups |
| Reports | List group reports and fetch full error reports |
| Notes | List, add, and delete notes |
Security Notes
- Access is limited to projects you belong to.
- OAuth uses
telebugs.readandtelebugs.writescopes. - Application-supplied error data is marked as untrusted so AI tools treat it as debugging evidence, not instructions. See Reports for details.
Next Steps
- Read the Authentication guide to understand OAuth vs API keys
- Follow Connecting AI Tools for your specific editor
- Explore the available tools in the Error Groups reference