-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.01 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.01 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
{
"name": "@srcgrp/sentry-mcp-server",
"version": "1.0.0",
"description": "Connect Sentry issues to your MCP workflow",
"author": "Saeed Akasteh",
"license": "MIT",
"keywords": [
"sentry",
"mcp",
"model-context-protocol",
"cline",
"error-tracking",
"issues",
"release-health"
],
"repository": {
"type": "git",
"url": "https://github.com/srcgrp/sentry-mcp-server"
},
"type": "module",
"main": "./build/index.js",
"bin": {
"sentry-mcp-server": "./build/index.js"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@sentry/node": "^9.12.0",
"axios": "^1.8.4",
"dotenv": "^16.5.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}