List issues, get event details, resolve errors, query project stats, and manage releases via Sentry REST API
125+ deploysConnect Sentry
7 tools ready
claude mcp add sentry --url https://datafaucet.dev/api/mcp/t/sentryPaste in terminal, then ask your agent to use any Sentry tool.
GET endpoints
list_issues
List project issues with pagination. Params: query (search string), sort (date/new/priority/freq), statsPeriod (24h/14d/etc). Returns issue ID, title, culprit, count, userCount, firstSeen, lastSeen, status, level.
https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/issues/
get_latest_event
Get the latest event for an issue. Returns full stack trace, tags, contexts (browser, OS, device), breadcrumbs, request data, and user info.
https://sentry.io/api/0/issues/{issue_id}/events/latest/
list_projects
List all projects in an organization. Returns project slug, name, platform, dateCreated, isBookmarked, and team info.
https://sentry.io/api/0/organizations/{organization_slug}/projects/
get_project_stats
Get project event statistics. Params: stat (received/rejected/blacklisted), resolution (10s/1h/1d), since/until (unix timestamps). Returns time-series array of [timestamp, count] pairs.
https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/stats/
list_issue_events
List all events for an issue with pagination. Returns event ID, dateCreated, message, tags, and user. Use to trace error frequency and affected users.
https://sentry.io/api/0/issues/{issue_id}/events/
PUT endpoints
update_issue
Update issue status. Set status to 'resolved', 'unresolved', or 'ignored'. Can also set assignedTo, hasSeen, isBookmarked. Returns updated issue.
https://sentry.io/api/0/issues/{issue_id}/
POST endpoints
create_issue
Create a new issue manually in a project. Params: title (required), culprit (source location), message (details). Useful for agents reporting bugs found during code review or testing.
https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/issues/
Run this in your terminal:
claude mcp add sentry https://datafaucet.dev/api/mcp/t/sentry
Connect Sentry to your AI agent in under 60 seconds. No account required.
{notion_token}) with your real credentialsNeed API keys? Try our free sandbox templates first to see MCP in action with zero setup.
Replace these placeholders with your real values before deploying:
{culprit}Your value{issue_id}Resource identifier{message}Your value{organization_slug}Your account/org name{project_slug}Your value{sentry_token}API settings page{status}Your value{title}Your valuePreview:
GET https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/issues/ Authorization: Bearer {sentry_token}
claude mcp add sentry --url https://datafaucet.dev/api/mcp/t/sentry
Paste into your client's MCP configuration file · most users connect in under 60s
claude mcp add sentry --url https://datafaucet.dev/api/mcp/t/sentryWhat your AI agent sees
I have access to 7 tools from Sentry: list_issues, get_latest_event, update_issue, and 4 more.
“List project issues with pagination. Params: query (search string), sort (date/new/priority/freq), statsPeriod (24h/14d/etc). Returns issue ID, title, culprit, count, userCount, firstSeen, lastSeen, status, level.”
Calling list_issues... Done. Here are the results.
Try these prompts
“List project issues with pagination. Params: query (search string), sort (date/new/priority/freq), statsPeriod (24h/14d/etc). Returns issue ID, title, culprit, count, userCount, firstSeen, lastSeen, status, level”
Copy“Get the latest event for an issue. Returns full stack trace, tags, contexts (browser, OS, device), breadcrumbs, request data, and user info”
Copy“Update issue status. Set status to 'resolved', 'unresolved', or 'ignored'. Can also set assignedTo, hasSeen, isBookmarked. Returns updated issue”
CopyClick any prompt to copy, then paste into your AI client.