package.json•985 B
{
"name": "appsignal-mcp",
"author": "AppSignal",
"version": "1.0.0",
"description": "The official AppSignal MCP server",
"homepage": "https://appsignal.com",
"license": "MIT",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"bin": {
"appsignal-server": "./build/index.js"
},
"files": [
"build"
],
"keywords": [
"appsignal",
"mcp",
"server"
],
"repository": {
"type": "git",
"url": "git+https://github.com/appsignal/mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"axios": "^1.11.0",
"dotenv": "^17.2.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@types/jest": "^29.5.11",
"typescript": "^5.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.4.1"
}
}