-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.sentry-mcp-npx.json
More file actions
66 lines (59 loc) · 2.16 KB
/
Copy pathcom.sentry-mcp-npx.json
File metadata and controls
66 lines (59 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.sentry-mcp-npx",
"name": "Sentry (Local)",
"alias": "sentry-local",
"description": "Query and manage Sentry issues, errors, performance data, and project settings locally via npx. Supports AI-powered search with your own LLM API key.",
"icon": "\ud83d\udc1b",
"schema_version": "2.1",
"categories": ["monitoring", "developer-tools"],
"tags": ["sentry", "errors", "monitoring", "debugging", "performance", "observability"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@sentry/mcp-server@latest"],
"env": {
"SENTRY_ACCESS_TOKEN": "${input:SENTRY_ACCESS_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "SENTRY_ACCESS_TOKEN",
"label": "Sentry User Auth Token",
"description": "User auth token from Sentry. Requires scopes: org:read, project:read, project:write, team:read, event:write.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "sntryu_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://sentry.io/settings/account/api/auth-tokens/",
"instructions": "1. Go to Sentry Settings > API > Auth Tokens\n2. Click 'Create New Token'\n3. Select scopes: org:read, project:read, project:write, team:read, team:write, event:write\n4. Click 'Create Token'\n5. Copy the generated token",
"button_label": "Create Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a User Auth Token at Sentry Settings > API > Auth Tokens with org:read, project:read, project:write scopes"
},
"contributor": {
"name": "Sentry",
"github": "getsentry",
"url": "https://sentry.io"
},
"links": {
"repository": "https://github.com/getsentry/sentry-mcp",
"homepage": "https://sentry.io",
"documentation": "https://docs.sentry.io"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": true,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/getsentry/sentry-mcp/releases"
}