package.json•2.16 kB
{
"name": "3gpp-mcp-charging",
"version": "3.0.2",
"description": "3GPP MCP Server V3.0.0 - Direct access to TSpec-LLM dataset (arxiv.org/abs/2406.01768) and 3GPP specifications via external APIs",
"main": "dist/index.js",
"type": "commonjs",
"bin": {
"3gpp-mcp-charging": "./bin/install.js"
},
"directories": {
"doc": "docs",
"test": "tests",
"bin": "bin"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"serve": "node bin/install.js serve",
"mcp": "node dist/index.js",
"mcp:dev": "tsc && node dist/index.js",
"install:cli": "node bin/install.js init",
"install:claude": "node bin/install.js init --client claude",
"install:cursor": "node bin/install.js init --client cursor",
"install:vscode": "node bin/install.js init --client vscode",
"info": "node bin/install.js info",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"mcp",
"3gpp",
"telecom",
"charging",
"billing",
"revenue",
"ai",
"ocs",
"chf",
"diameter"
],
"author": "3GPP MCP Contributors",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/edhijlu/3gpp-mcp-server.git",
"directory": "3gpp-mcp-server-v2"
},
"homepage": "https://github.com/edhijlu/3gpp-mcp-server/tree/main/3gpp-mcp-server-v2",
"bugs": {
"url": "https://github.com/edhijlu/3gpp-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"commander": "^12.0.0",
"inquirer": "^8.2.6",
"chalk": "^4.1.2",
"ora": "^5.4.1",
"boxen": "^5.1.2",
"axios": "^1.6.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@types/node": "^24.5.0",
"typescript": "^5.9.2",
"jest": "^30.1.3",
"@types/jest": "^30.0.0",
"ts-jest": "^29.4.2",
"eslint": "^9.35.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0"
}
}