Skip to main content

Overview

The Model Context Protocol (MCP) is a standardized protocol designed to facilitate communication and context sharing between AI agents and external services. It is especially useful for code assistants and chat-based AI tools that benefit from accessing a shared understanding of user intent, session state, and operational context.

Bugsee MCP server

The Bugsee MCP server gives any MCP-aware AI agent secure, scoped access to the full context of Bugsee issues — crashes, errors, and user-submitted bug reports — without the developer leaving the agent's chat or editor. Combined with a code assistant that has access to your local source tree, this enables an end-to-end workflow: the agent fetches the issue, reads the stack trace, locates the relevant files, and proposes a fix in the same conversation.

What you can do with it

  • Triage: ask the agent which crashes are spiking, blocking the most users, or newly appearing in a specific app version.
  • Root-cause analysis: pull a single issue with its stack trace and surrounding log entries, and have the agent map it to source files and explain the failure.
  • Regression hunting: diff issues across releases to spot what's new in the next build.
  • Bug-report to PR: turn a user-submitted bug report into a proposed code change without leaving the IDE.

See Usage for concrete example prompts.

Supported clients

The Bugsee MCP server works with any MCP client that supports HTTP transport. Tested clients include:

  • Claude Desktop (via Connectors)
  • Cursor
  • Windsurf
  • Visual Studio Code (GitHub Copilot Chat)
  • Cline
  • Zencoder
  • Antigravity

Configuration has per-client setup instructions.

Authentication

Bugsee supports two ways for an MCP client to authenticate:

  • OAuth 2.1 with PKCE (recommended). Most modern MCP clients support this — they prompt the user to sign in to Bugsee in the browser, the user approves access, and the client receives a scoped, rotated access token. No long-lived secret lives on the user's machine. See Security for details.
  • Personal access token. For clients that don't yet support OAuth, you can generate a long-lived personal token from the Bugsee dashboard and paste it into the client config. Treat it as a password.

Both modes resolve to the same set of read-only tools and the same data your account already has access to.

Development status

The Bugsee MCP server is under active development. As both the MCP protocol and the broader industry continue to evolve, breaking changes are possible. For the time being, this feature is provided free of charge to all users.