@access-mcp/system-status
Version:
MCP server for ACCESS-CI System Status and Outages API
58 lines (57 loc) • 1.45 kB
JSON
{
"name": "@access-mcp/system-status",
"version": "0.6.0",
"description": "MCP server for ACCESS-CI System Status and Outages API",
"type": "module",
"main": "dist/index.js",
"bin": {
"access-mcp-system-status": "dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"test": "vitest run --exclude '**/**.integration.test.ts'",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:all": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage --exclude '**/**.integration.test.ts'",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"access-ci",
"hpc",
"system-status",
"outages",
"monitoring"
],
"author": "ACCESS-CI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/necyberteam/access-mcp.git",
"directory": "packages/system-status"
},
"homepage": "https://github.com/necyberteam/access-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@access-mcp/shared": "^0.6.0",
"express": "^4.18.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/ui": "^2.1.9",
"c8": "^10.1.3",
"typescript": "^5.0.0",
"vitest": "^2.1.9"
}
}