-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@andrea9293/mcp-documentation-server",
"mcpName": "io.github.andrea9293/mcp-documentation-server",
"version": "1.15.3",
"description": "A TypeScript MCP server for document management and semantic search with embeddings",
"main": "dist/server.js",
"type": "module",
"bin": {
"mcp-documentation-server": "dist/server.js"
},
"homepage": "https://github.com/andrea9293/mcp-documentation-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/andrea9293/mcp-documentation-server.git"
},
"bugs": {
"url": "https://github.com/andrea9293/mcp-documentation-server/issues"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js && shx cp -r src/public dist/public",
"start": "tsx src/server.ts",
"web": "tsx src/web-server.ts",
"web:build": "npm run build && node dist/web-server.js",
"dev": "fastmcp dev src/server.ts",
"dev:direct": "npx tsx src/server.ts",
"dev:build": "npm run build && node dist/server.js",
"inspect": "npx fastmcp inspect src/server.ts",
"test": "echo \"Warning: no test specified\" && exit 0",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"documentation",
"search",
"embeddings"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@tsconfig/node22": "^22.0.1",
"@types/fs-extra": "^11.0.4",
"semantic-release": "^24.2.5",
"shx": "^0.4.0",
"tsx": "^4.22.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@google/genai": "^2.8.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@orama/orama": "^3.1.18",
"@orama/plugin-data-persistence": "^3.1.18",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.1",
"@xenova/transformers": "^2.17.2",
"dotenv": "^16.5.0",
"express": "^5.2.1",
"fastmcp": "^4.0.1",
"fs-extra": "^11.3.0",
"multer": "^2.1.1",
"unpdf": "^1.6.2",
"zod": "^3.25.64"
},
"overrides": {
"npm": "^11.0.0",
"hono": ">=4.12.21",
"@hono/node-server": ">=1.20.0",
"protobufjs": ">=7.6.0",
"@protobufjs/utf8": ">=1.1.1",
"axios": ">=1.15.3",
"ws": ">=8.20.1",
"fast-uri": ">=3.1.2",
"undici": ">=7.24.0",
"path-to-regexp": ">=8.3.1",
"follow-redirects": ">=1.15.12",
"qs": ">=6.15.2",
"picomatch": ">=4.0.4",
"brace-expansion": ">=2.0.3",
"file-type": ">=22.0.0",
"lodash": ">=4.17.24",
"lodash-es": ">=4.17.24",
"ip-address": ">=10.1.1",
"minimatch": ">=10.0.1",
"express-rate-limit": ">=8.5.1",
"handlebars": ">=4.7.9",
"diff": ">=7.0.0"
},
"publishConfig": {
"access": "public"
}
}