bugsink-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bugsink-mcpwhat are the unresolved issues in the mobile project?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bugsink-mcp
A full read/write MCP server for Bugsink
(self-hosted, Sentry-protocol-compatible error tracking), built directly against Bugsink's
/api/canonical/0/ OpenAPI schema.
It exists because the existing bugsink-mcp package on npm only wraps the read side of the
API (list/get). This one covers the full canonical API surface: resolving, muting, reopening and
deleting issues, commenting, and creating/updating teams, projects and releases — plus a couple of
correctness fixes over the original (see Fixes over the original).
Setup
Requires Node.js 18.17+.
In Bugsink, go to Account Settings → Auth Tokens and create a token.
Add the server to your MCP client.
Claude Code
One-liner, using the claude mcp CLI:
claude mcp add bugsink \
-e BUGSINK_URL=https://bugs.example.com \
-e BUGSINK_TOKEN=<your token> \
-- npx -y github:fers4t/bugsink-mcpThis writes the equivalent of the following into ~/.claude.json (or pass --scope project to
write a shared .mcp.json instead of the user-local config):
{
"mcpServers": {
"bugsink": {
"type": "stdio",
"command": "npx",
"args": ["-y", "github:fers4t/bugsink-mcp"],
"env": {
"BUGSINK_URL": "https://bugs.example.com",
"BUGSINK_TOKEN": "<your token>"
}
}
}
}Restart Claude Code (or start a new session) afterwards — MCP tool lists are loaded at session start and won't pick up a config change mid-conversation.
Other MCP clients
Any client that reads a mcpServers map (Cursor, Windsurf, etc.) can use the same JSON shape
shown above — point it at command: npx, args: ["-y", "github:fers4t/bugsink-mcp"], and the two
required env vars.
npx installs straight from GitHub (no npm publish involved) and runs the prepare script to
compile TypeScript on first use, then reuses its local cache on subsequent launches.
Environment variables
Variable | Required | Description |
| yes | Base URL of your Bugsink instance, e.g. |
| yes | Personal API token (Bearer auth) |
| no | Per-request timeout in ms (default |
See .env.example. Never commit a real token — the server reads it from the environment only.
Related MCP server: Sierra Navigator Cloud
Tools
Connectivity
Tool | Description |
| Verify the URL/token work and report how many teams are visible |
Teams
Tool | Description |
| List all teams |
| Get a team by UUID |
| Create a team |
| Rename a team or change its visibility |
Projects
Tool | Description |
| List projects, optionally filtered by team |
| Get a project (including its DSN), optionally expanding the team |
| Create a project under a team |
| Update name/visibility/alert flags/retention/team |
Issues
Tool | Description |
| List issues for a project (sort by |
| Get an issue by UUID or friendly ID (e.g. |
| Irreversibly delete an issue and its events |
| Resolve now |
| Resolve, regressing if a later release reports it again |
| Resolve as of the current latest release |
| Reopen a resolved issue |
| Mute indefinitely |
| Mute for N periods (e.g. 3 days) |
| Mute until an event-count threshold is crossed in a period |
| Unmute |
| Add a comment to an issue |
Events
Tool | Description |
| List events (occurrences) for an issue |
| Get full event detail, including tags/contexts/raw payload |
| Render a rendered-Markdown stacktrace for an event |
Releases
Tool | Description |
| List releases for a project |
| Get a release by UUID |
| Create a release (needed for |
Fixes over the original
get_stacktraceactually works. Bugsink's stacktrace endpoint returnstext/markdown, not JSON. The original package calledres.json()unconditionally and threwUnexpected token '#', "# TypeError"... is not valid JSONon every call. This server reads that endpoint as text.Write support: resolve/mute/reopen/delete/comment on issues, and create/update for teams, projects and releases — none of which the read-only original exposed.
Bounded timeouts (
AbortSignal.timeout, default 15s) on every request, so a hung upstream can't hang the MCP process indefinitely.Safe retries: idempotent
GETrequests get a bounded exponential-backoff-with-jitter retry on502/503/504or network failure. Mutating requests (POST/PATCH/DELETE) are never auto-retried, since retrying a write whose response was merely lost could duplicate side effects (e.g. a second identical comment).Input validation via Zod on every tool argument (numeric IDs, UUIDs, enums), so malformed input is rejected locally with a clear message instead of reaching the API.
No secrets in output. Errors report the HTTP status and a truncated response body; the
Authorizationheader value is never included in any log or thrown error.
Security notes
This is a local stdio process — it does not open a network listener. Access control is whatever your MCP client already provides plus possession of
BUGSINK_TOKEN.All diagnostics go to
stderr;stdoutis reserved for the JSON-RPC protocol stream.BUGSINK_URLmust behttp:orhttps:; plain HTTP to a non-local host prints a warning (your token would be sent unencrypted) but is not blocked, to support internal networks.Treat
BUGSINK_TOKENlike any other credential: keep it out of version control, rotate it in Bugsink if it ever leaks, and scope it to the least-privileged user your workflow allows.
Development
npm install # installs deps and runs the TypeScript build (prepare script)
npm run typecheck
npm run build # compile src/ -> dist/
npm run dev # watch modeLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceMCP server providing full coverage of the Huly SDK — issues, projects, workspaces, members, and account management.901MIT
- FlicenseNot gradedqualityBmaintenanceHosted, OAuth-secured MCP server that drives the Sierra Interactive real-estate admin backend, enabling reads, guarded writes, and identity-locked deletes over HTTP without a browser.
- AlicenseNot gradedqualityBmaintenanceHosted MCP server that exposes your self-hosted Bugsink error tracker as tools for LLMs, enabling issue management, release tracking, and stacktrace retrieval via chat prompts.877MIT
- FlicenseAqualityBmaintenanceA lightweight MCP server for tracking bugs and tasks across coding sessions, providing persistent SQLite-backed storage and six tools for logging, inspecting, updating, resolving, and deleting bugs.61
Related MCP Connectors
MCP server for InsForge BaaS — database, storage, edge functions, and deployments
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fers4t/bugsink-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server