.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/getsentry/sentry-mcp
home/mcp-servers/getsentry/sentry-mcp
getsentry avatar

sentry-mcp

bygetsentry· 3 MCP servers

Stars

796

Forks

131

Category

Debugging

View on GitHub

TL;DR

Sentry's MCP service is primarily designed for human-in-the-loop coding agents. Our tool selection and priorities are focused on developer workflows and debugging use cases, rather than providing a general-purpose MCP server for all Sentry functionality.

How to install sentry-mcp?

getsentry/sentry-mcp
$git clone https://github.com/getsentry/sentry-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install sentry-mcp by running `git clone https://github.com/getsentry/sentry-mcp`, then use it for the current task and follow its documentation at https://github.com/getsentry/sentry-mcp.

Files · 1

View on GitHub
README.md
1# sentry-mcp
2 
3Sentry's MCP service is primarily designed for human-in-the-loop coding agents. Our tool selection and priorities are focused on developer workflows and debugging use cases, rather than providing a general-purpose MCP server for all Sentry functionality.
4 
5This remote MCP server acts as middleware to the upstream Sentry API, optimized for coding assistants like Cursor, Claude Code, and similar development tools. It's based on [Cloudflare's work towards remote MCPs](https://blog.cloudflare.com/remote-model-context-protocol-servers-mcp/).
6 
7## Getting Started
8 
9You'll find everything you need to know by visiting the deployed service in production:
10 
11<https://mcp.sentry.dev>
12 
13If you're looking to contribute, learn how it works, or to run this for self-hosted Sentry, continue below.
14 
15### Claude Code Plugin
16 
17Install as a Claude Code plugin for automatic subagent delegation:
18 
19```shell
20claude plugin marketplace add getsentry/sentry-mcp
21claude plugin install sentry-mcp@sentry-mcp
22```
23 
24This provides a `sentry-mcp` subagent that Claude automatically delegates to when you ask about Sentry errors, issues, traces, or performance.
25 
26For forward-looking tool variants and features:
27 
28```shell
29claude plugin install sentry-mcp@sentry-mcp-experimental
30```
31 
32### Stdio vs Remote
33 
34While this repository is focused on acting as an MCP service, we also support a `stdio` transport. This is still a work in progress, but is the easiest way to adapt run the MCP against a self-hosted Sentry install.
35 
36**Note:** The AI-powered search tools (`search_events`, `search_issues`, etc.) require an LLM provider (OpenAI, Azure OpenAI, Anthropic, or OpenRouter). These tools use natural language processing to translate queries into Sentry's query syntax. Without a configured provider, these specific tools will be unavailable, but all other tools will function normally.
37 
38To utilize the `stdio` transport, you'll need to create an User Auth Token in Sentry with the necessary scopes. As of writing this is:
39 
40```
41org:read
42project:read
43project:write
44team:read
45team:write
46event:write
47```
48 
49Launch the transport:
50 
51```shell
52npx @sentry/mcp-server@latest --access-token=sentry-user-token
53```
54 
55Need to connect to a self-hosted deployment? Add <code>--host</code> (hostname
56only, e.g. <code>--host=sentry.example.com</code>) when you run the command.
57For isolated internal deployments that only expose plain HTTP, also add
58<code>--insecure-http</code>.
59 
60Some features (like Seer) may not be available on self-hosted instances. You can
61disable specific skills to prevent unsupported tools from being exposed:
62 
63```shell
64npx @sentry/mcp-server@latest --access-token=TOKEN --host=sentry.example.com --disable-skills=seer
65```
66 
67For self-hosted instances without TLS:
68 
69```shell
70npx @sentry/mcp-server@latest --access-token=TOKEN --host=sentry.internal:9000 --insecure-http
71```
72 
73#### Remote with an Explicit Sentry Token
74 
75Remote clients that support custom HTTP headers can pass an upstream Sentry API
76token directly to the Cloudflare transport:
77 
78```json
79{
80 "mcpServers": {
81 "sentry": {
82 "url": "https://mcp.sentry.dev/mcp",
83 "headers": {
84 "Authorization": "Sentry-Bearer ${SENTRY_ACCESS_TOKEN}"
85 }
86 }
87 }
88}
89```
90 
91`Sentry-Bearer` is intentionally separate from `Bearer`: `Bearer` is reserved
92for MCP OAuth access tokens. With `Sentry-Bearer`, the worker does not store,
93validate, exchange, or refresh the upstream token. It forwards the token through
94the same Sentry API calls used by OAuth-backed sessions, and the client or
95upstream provider remains responsible for token lifetime and refresh.
96 
97Direct remote auth defaults to all active MCP skills. You can narrow the exposed
98tools with `?skills=inspect,triage` or `?disable-skills=seer`.
99 
100#### Environment Variables
101 
102```shell
103SENTRY_ACCESS_TOKEN= # Required: Your Sentry auth token
104 
105# LLM Provider Configuration (required for AI-powered search tools)
106EMBEDDED_AGENT_PROVIDER= # Required when multiple provider keys are set: 'open

Preview

getsentry/sentry-mcpgetsentry/sentry-mcp

# sentry-mcp

Sentry's MCP service is primarily designed for human-in-the-loop coding agents. Our tool selection and priorities are focused on developer workflows and debuggi

This remote MCP server acts as middleware to the upstream Sentry API, optimized for coding assistants like Cursor, Claude Code, and similar development tools. I

## Getting Started

Repogetsentry/sentry-mcp
TypeMCP Servers
CategoryDebugging
UpdatedJul 2026
LicenseNOASSERTION
First seenJul 27, 2026

Tags

MCPmcp-servertag-production

Related

6 picks
Type
  1. chromedevtools avatarchrome-devtools-mcpMCP server for Chrome DevToolsMCP ServersJul 202611M48k
  2. ooo0ooo avatarlean-lsp-mcpLean Theorem Prover MCPMCP ServersJul 20261.9M460
  3. wonderwhy-er avatardesktopcommandermcpMCP server for terminal commands, file operations, and process managementMCP ServersJul 2026346k8.9k
  4. avivsinai avatarlangfuse-mcpLangfuse MCP server for accessing and analyzing telemetry data via natural languageMCP ServersJun 202611k101
  5. faraazahmad avatarmcp_debugPostman for your MCP server with a Claude chat that calls your toolsMCP ServersJun 20258.9k14
  6. p3gleg avatartauri-plugin-mcpAllows AI agents (e.g., Cursor, Claude Code) to debug within Tauri apps via screenshot capture, window management, DOM access, and simulated user inputs.MCP ServersJul 20266.2k104