Add sentry.ts with initSentry + withSentryTransaction, wrap all tool call handlers with transaction tracing and error capture. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
539 B
JSON
24 lines
539 B
JSON
{
|
|
"name": "confluence-mcp",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Confluence Cloud realtime collaboration",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/index.js",
|
|
"dev": "tsx src/index.ts",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"@sentry/node": "^10.39.0",
|
|
"dotenv": "^17.2.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|