Files
tool-compression-mcp/package.json
Christian Gick a6fcf2cefa feat(CF-529): Add Sentry error tracking integration
- Added @sentry/node dependency
- Initialize Sentry in src/index.ts with environment variables
- Supports SENTRY_DSN, SENTRY_ENVIRONMENT, SENTRY_API_TRACE_RATE
2026-01-28 17:23:05 +02:00

26 lines
648 B
JSON

{
"name": "tool-compression-mcp",
"version": "1.0.0",
"description": "MCP server providing compressed versions of Read/Grep/Glob tools",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist"
},
"keywords": ["mcp", "compression", "claude-code", "token-optimization"],
"author": "Agiliton",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
"@sentry/node": "^9.19.1",
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3",
"tsx": "^4.7.0"
}
}