Access Sentry error tracking and performance monitoring. Query issues, analyze stack traces, and investigate production errors.
MCP (Model Context Protocol) servers extend Claude's capabilities with external tools and data sources. They provide access to databases, APIs, file systems, and more. Configure MCP servers in .mcp.json or add them via `claude mcp add` command.
Setup: 1. Generate an Auth Token at https://sentry.io/settings/auth-tokens/ 2. Required scopes: project:read, event:read, issue:read 3. Set your organization slug CLI Command: SENTRY_AUTH_TOKEN=... SENTRY_ORG=... claude mcp add sentry -- npx -y @anthropic-ai/mcp-server-sentry
{
"mcpServers": {
"sentry": {
"command": "npx",
"args": ["-y", "@anthropic-ai/mcp-server-sentry"],
"env": {
"SENTRY_AUTH_TOKEN": "your-auth-token",
"SENTRY_ORG": "your-org-slug"
}
}
}
}Manage Docker containers and images. List, start, stop containers, view logs, and inspect container configurations.