Sentry Issues MCP
센트리 이슈 MCP
설명
⚠️ 1.0.5 버전부터 문제 발생 기능이 더 이상 지원되지 않습니다. 응답 구조가 이벤트 API와 매우 유사하여 중복으로 간주됩니다.
이것은 센트리 문제에 대한 MCP입니다.
문제 또는 문제 목록을 얻기 위한 2가지 도구를 지원합니다.
LLM 분석을 Res에 맡길 수도 있고, 원하는 대로 할 수도 있습니다.
Related MCP server: MCP Sentry
특징
EZ 사이즈
쉽게 이해하다
EZ 작은
도구
단일 이벤트 가져오기
이벤트 세부 정보 가져오기, 작은 모드는 스택 정보 반환, 거대 모드는 모든 정보 반환
입력:
url_or_id: 센트리 이벤트 URL 또는 센트리 이벤트 ID
organization_id_or_slug: 센트리 조직 ID 또는 슬러그, 정의되지 않을 수 있음
project_id_or_slug: 센트리 프로젝트 ID 또는 슬러그, 정의되지 않을 수 있음
모드: 아주 작거나 아주 커도 정의되지 않을 수 있습니다.
프로젝트 이벤트 가져오기
이벤트 목록 가져오기, tiny 모드는 id와 제목을 반환하고, huge 모드는 모든 정보를 반환합니다.
입력:
project_id_or_slug: 센트리 프로젝트 ID 또는 슬러그
organization_id_or_slug: 센트리 조직 ID 또는 슬러그, 정의되지 않을 수 있음
모드: 아주 작거나 아주 커도 정의되지 않을 수 있습니다.
빠른 시작
이것은 MCP 서버 구성입니다
지엑스피1
사례
LLM에 URL 또는 ID로 하나의 이슈를 분석해 달라고 요청하세요.
"문제를 분석하고, 그 이유를 알려주고, 해결 방법을 알려주세요, {sentry_issue_url}"를 입력하세요.
만약 당신의 LLM이 SMART🧠이라면, 그것은 도구를 호출할 것입니다
너는 결과를 얻을 것이다
LLM에 오늘 가장 위험한 문제를 찾아달라고 요청하세요(PS: 센트리 기간의 기본 값은 "24시간")
"오늘 가장 위험한 문제를 찾아 그 이유와 해결 방법을 알려주세요"라고 입력하세요.
만약 당신의 LLM이 SMART🧠이라면, 그것은 도구를 호출할 것입니다
너는 결과를 얻을 것이다
특허
MIT
Available Tools
2 toolsget_project_eventsC
get issue events by inputting sentry organization id or slug and sentry project name or slug
| Name | Required | Description | Default |
|---|---|---|---|
| organization_id_or_slug | No | sentry organization id or slug, it can be undefined | |
| project_id_or_slug | No | sentry project name or slug, it can be undefined | |
| mode | No | mode for output, it can be undefined, it used to control LLM token usage | tiny |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but provides minimal behavioral context. It mentions what inputs to provide but doesn't describe what 'get issue events' actually returns (list of events? what format?), pagination behavior, authentication requirements, rate limits, or error conditions. For a tool with 3 parameters and no output schema, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that gets straight to the point without unnecessary words. However, it could be slightly more structured by separating the core purpose from the parameter requirements for better readability.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain what 'issue events' are, what format they're returned in, whether there are pagination considerations, or how the 'mode' parameter affects the output. The agent would struggle to understand what to expect from this tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description mentions organization and project inputs but adds no additional semantic context beyond what's in the schema. The 'mode' parameter with its 'tiny'/'huge' enum values controlling LLM token usage is only explained in the schema, not the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('get issue events') and the required inputs (organization and project identifiers), making the purpose understandable. However, it doesn't differentiate from the sibling tool 'get_single_event' - we don't know if this tool returns multiple events vs a single event, or how they differ in scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus the sibling 'get_single_event'. There's no mention of prerequisites, appropriate contexts, or alternative approaches. The user must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_single_eventC
get issue event by inputting sentry issue event url or sentry issue event id
| Name | Required | Description | Default |
|---|---|---|---|
| url_or_id | Yes | sentry issue event url or sentry issue event id | |
| organization_id_or_slug | No | sentry organization id or slug, it can be undefined | |
| project_id_or_slug | No | sentry project name or slug, it can be undefined | |
| mode | No | mode for output, it can be undefined, it used to control LLM token usage | tiny |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions the tool retrieves an issue event but doesn't describe what an 'issue event' contains, whether this is a read-only operation, potential error conditions, or any performance considerations. The description is minimal and lacks behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with zero wasted words. It's appropriately sized and front-loaded, directly stating the tool's core functionality without unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description is incomplete. It doesn't explain what an 'issue event' is, what data it returns, or how the 'mode' parameter affects output. For a tool with 4 parameters and no structured output documentation, more context is needed to be fully helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description mentions 'url_or_id' but doesn't add meaning beyond what the schema provides for parameters like 'mode' with its enum values or optional fields. Baseline 3 is appropriate when the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'get issue event by inputting sentry issue event url or sentry issue event id'. It specifies the verb ('get'), resource ('issue event'), and required input format, though it doesn't explicitly differentiate from the sibling tool 'get_project_events'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like 'get_project_events'. It states what the tool does but offers no context about appropriate use cases, prerequisites, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- First observed
get_project_events - First observed
get_single_event
TDQS
The two tools have clearly distinct purposes: get_project_events retrieves multiple events for a project, while get_single_event retrieves a single event by its URL or ID. There is no overlap or ambiguity between them.
Both tools follow a consistent verb_noun pattern (get_project_events, get_single_event) with clear, descriptive names that indicate their specific functions. The naming is uniform and predictable.
With only 2 tools, the server feels too thin for a Sentry Issues domain, as it lacks essential operations like creating, updating, or listing issues, which are core to issue management workflows. This minimal set limits functionality significantly.
The tool surface is severely incomplete for Sentry Issues, covering only event retrieval. It misses critical operations such as listing issues, creating issues, updating issue status, or deleting issues, leaving agents unable to perform basic issue lifecycle tasks.
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 Connectors
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
Investigate errors, track deployments, analyze performance, and manage application monitoring
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
Related MCP Servers
- -licenseNot gradedqualityAmaintenanceThis server provides tools to inspect error reports, stacktraces, and other debugging information from your Sentry account.90,042MIT
- FlicenseBqualityDmaintenanceA Model Context Protocol server that retrieves and analyzes Sentry.io issues, allowing users to inspect error reports, stacktraces, and debugging information from their Sentry account.222-
- FlicenseNot gradedqualityDmaintenanceAn MCP server that connects to Sentry.io or self-hosted Sentry instances to retrieve and analyze error reports, stack traces, and debugging information.2-
- FlicenseBqualityCmaintenanceEnables interaction with Sentry's error tracking platform to fetch and manage issue details, events, and project information through the Sentry API.4721-
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/Leee62/sentry-issues-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server