-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@calltelemetry/cisco-cucm-mcp",
"version": "0.7.1",
"type": "module",
"description": "MCP server for CUCM operational debugging: DIME logs, AXL config, RIS device status, PerfMon counters, service health, packet capture, and pcap analysis",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/calltelemetry/cisco-cucm-mcp.git"
},
"bin": "build/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"build/",
"README.md",
"LICENSE",
"package.json"
],
"keywords": [
"mcp",
"model-context-protocol",
"cisco",
"cucm",
"unified-communications",
"voip",
"sip",
"dime",
"packet-capture",
"wireshark",
"axl",
"perfmon",
"risport",
"serviceability"
],
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.12.0",
"scripts": {
"build": "vite build && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ test/ --max-warnings=25",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"validate": "yarn typecheck && yarn lint && yarn test",
"prepack": "yarn build && yarn test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"fast-xml-parser": "^4.5.3",
"ssh2": "^1.16.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@types/node": "^25.1.0",
"@types/ssh2": "^1.15.4",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.3",
"prettier": "^3.8.1",
"tsx": "^4.19.4",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}