-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.63 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.63 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
{
"name": "@PancrePal-xiaoyibao/knows-mcp-server",
"version": "0.1.3",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"description": "A Model Context Protocol (MCP) server that integrates with the KnowS evidence & question-answering API.",
"contributors": [
{
"name": "xiao-x-bao community",
"url": "https://github.com/PancrePal-xiaoyibao"
}
],
"keywords": [
"mcp",
"model-context-protocol",
"knows",
"evidence",
"medical",
"clinical",
"research",
"claude"
],
"author": "xiao-x-bao community",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PancrePal-xiaoyibao/MCP-KnowS-AI.git"
},
"bugs": {
"url": "https://github.com/PancrePal-xiaoyibao/MCP-KnowS-AI/issues"
},
"homepage": "https://github.com/PancrePal-xiaoyibao/MCP-KnowS-AI#readme",
"files": [
"build",
"README.md"
],
"private": false,
"type": "module",
"main": "build/index.js",
"bin": {
"knows-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"dev": "ts-node src/index.ts",
"start": "node build/index.js",
"test": "jest --passWithNoTests",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.0",
"axios-retry": "^4.5.0",
"dotenv": "^16.4.0",
"lru-cache": "^11.2.4",
"p-limit": "^7.2.0",
"pino": "^9.0.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.0"
}
}