-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsmithery.config.json
More file actions
40 lines (40 loc) · 863 Bytes
/
smithery.config.json
File metadata and controls
40 lines (40 loc) · 863 Bytes
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
{
"name": "wisdomforge",
"version": "1.0.0",
"type": "mcp-server",
"description": "A powerful knowledge management system that forges wisdom from experiences, insights, and best practices",
"main": "dist/index.js",
"entrypoint": "dist/index.js",
"runtime": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"@qdrant/js-client-rest": "^1.13.0"
},
"environment": {
"variables": [
"DATABASE_TYPE",
"COLLECTION_NAME",
"HTTP_SERVER",
"PORT",
"QDRANT_URL",
"QDRANT_API_KEY",
"CHROMA_URL"
],
"defaults": {
"DATABASE_TYPE": "qdrant",
"HTTP_SERVER": "false",
"PORT": "3000"
}
},
"healthCheck": {
"path": "/health",
"interval": 30,
"timeout": 5
},
"scaling": {
"minInstances": 1,
"maxInstances": 3
}
}