-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "toolmux",
"version": "0.1.0",
"description": "Smart MCP proxy with code execution — connect N MCP servers, expose 2 tools (execute + search). O(1) token cost.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tylergibbs1/toolmux"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"agent",
"proxy",
"tool-use",
"llm",
"claude",
"code-execution",
"sandbox"
],
"bin": {
"toolmux": "dist/cli.js"
},
"scripts": {
"build": "tsc && cp src/sandbox-worker.mjs dist/",
"dev": "bun run src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "bun run build"
},
"files": [
"dist",
"!dist/__tests__"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@types/node": "^22.15.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
}
}