-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.57 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.57 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
{
"name": "mcp-tool-search",
"version": "1.4.0",
"description": "MCP proxy that reduces Claude context token usage by ~85-96% via lazy tool loading. Works with Claude Code, Claude Desktop, and any MCP client.",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-tool-search": "dist/index.js",
"mcp-build-catalog": "dist/build-catalog.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "MCP_HTTP_PORT=3100 node dist/index.js",
"catalog": "node dist/build-catalog.js",
"dev": "tsc --watch",
"test": "node --import tsx --test src/__tests__/*.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-code",
"claude-desktop",
"cursor",
"windsurf",
"proxy",
"token-optimization",
"tool-search",
"context-optimization",
"token-reduction",
"tool-management",
"lazy-loading",
"fuzzy-search",
"ai",
"llm"
],
"author": "AEGIS Forge Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KGT24k/mcp-tool-search"
},
"homepage": "https://github.com/KGT24k/mcp-tool-search#readme",
"bugs": {
"url": "https://github.com/KGT24k/mcp-tool-search/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.27.1",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "22.19.11",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}