-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.94 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
{
"name": "@bmsoft1024/common-mcp-gateway",
"version": "1.0.0",
"description": "Common MCP Gateway - Aggregates multiple MCP servers with robust timeout and error handling",
"main": "dist/index.js",
"bin": {
"common-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"postinstall": "node -e \"const os=require('os');const fs=require('fs');const path=require('path');const dir=path.join(os.homedir(),'.common-mcp');if(!fs.existsSync(dir)){fs.mkdirSync(dir,{recursive:true});console.log('Created config directory:',dir);}\"",
"setup": "node dist/index.js --help || echo 'Run common-mcp to start the gateway'"
},
"repository": {
"type": "git",
"url": "https://github.com/BMSoft1024/Common_MCP_Gateway.git"
},
"bugs": {
"url": "https://github.com/BMSoft1024/Common_MCP_Gateway/issues"
},
"homepage": "https://github.com/BMSoft1024/Common_MCP_Gateway#readme",
"keywords": [
"mcp",
"gateway",
"aggregator",
"proxy",
"model-context-protocol",
"windsurf",
"cursor",
"cascade",
"timeout",
"retry",
"circuit-breaker"
],
"author": "BMSoft1024",
"license": "Apache-2.0",
"preferGlobal": true,
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"execa": "^9.5.2",
"ts-node": "^10.9.2",
"uuid": "^11.0.4",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}