package.json•1.02 kB
{
"name": "@mcp/sentry",
"version": "0.1.0",
"description": "MCP server for Sentry integration - monitor errors and performance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"start:prod": "./start.sh",
"start:dev": "./start-dev.sh",
"start:coflow": "./start-coflow.sh",
"test": "jest",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"sentry",
"error-tracking",
"monitoring",
"observability"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"@sentry/node": "^8.43.0",
"@sentry/types": "^8.43.0",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/jest": "^29.5.12",
"@types/node-fetch": "^2.6.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"files": [
"dist"
]
}