Install
openclaw skills install xferops-sentryQuery Sentry issues, events, and projects via MCP for XferOps incident investigation and triage. Requires @sentry/mcp-server and a Sentry API token.
openclaw skills install xferops-sentryError tracking and triage via MCP (Model Context Protocol).
Install the MCP server:
npx -y @sentry/mcp-server --skills=inspect,triage
Configure in your MCP client (e.g., ~/.mcporter/mcporter.json):
{
"mcpServers": {
"sentry": {
"command": "npx",
"args": ["-y", "@sentry/mcp-server", "--skills=inspect,triage"],
"env": {
"SENTRY_ACCESS_TOKEN": "your-token-here"
}
}
}
}
Set SENTRY_ACCESS_TOKEN to a Sentry User Auth Token with API access.
list_organizations — List organizations available to the tokenlist_projects — List projects in an organizationlist_issues — List issues in an organization (requires organizationSlug)get_issue — Get details for a specific issue (requires organizationSlug, issueId)list_events — List events for an issue (requires organizationSlug, issueId)get_event — Get details for an event (requires organizationSlug, eventId)inspect — AI-powered issue inspectiontriage — AI-powered triage assistancemcporter call sentry.list_organizations
mcporter call sentry.list_projects organizationSlug=xferops
mcporter call sentry.list_issues organizationSlug=xferops
mcporter call sentry.get_issue organizationSlug=xferops issueId=XFEROPS-AUTH-1
mcporter call sentry.list_events organizationSlug=xferops issueId=XFEROPS-AUTH-1
xferopsxferops/sentry/api-token