package.json•2.33 kB
{
"name": "mcp-cisco-support",
"version": "1.10.0",
"description": "MCP server for Cisco Support APIs including Bug Search and future tools",
"main": "dist/src/index.js",
"bin": {
"mcp-cisco-support": "dist/src/index.js"
},
"files": [
"dist/**/*",
"README.md",
"CLAUDE.md",
"LICENSE",
".env.example",
"Dockerfile",
"docker-compose.yml",
"wadl/**/*"
],
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/index.ts -- --http",
"stdio": "node dist/src/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:tool": "npm run build && node test-tool.js",
"test:tool:real": "npm run build && node test-tool.js",
"test:jest-tool": "node scripts/test-specific-tool.js",
"test:integration": "npm test -- --testNamePattern=\"Integration\"",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build",
"actions:list": "gh run list --limit 10",
"actions:watch": "gh run watch",
"actions:logs": "gh run view --log",
"actions:status": "gh run list --limit 1",
"token:generate": "npm start -- --generate-token",
"token:help": "npm start -- --token-help",
"inspector": "npx @modelcontextprotocol/inspector"
},
"keywords": [
"mcp",
"cisco",
"support",
"bug",
"api",
"server-sent-events",
"tools"
],
"author": "sieteunoseis",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sieteunoseis/mcp-cisco-support.git"
},
"bugs": {
"url": "https://github.com/sieteunoseis/mcp-cisco-support/issues"
},
"homepage": "https://github.com/sieteunoseis/mcp-cisco-support#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.6.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}