-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.35 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.35 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
{
"name": "xiaoyibao-clinical-trials",
"version": "1.0.0",
"description": "MCP server developed by [xiao-x-bao community](https://info.xiao-x-bao.com.cn) for clinical trials from ClinicalTrials.gov API v2. Supports searching by keywords, disease, location with intelligent defaults (recruiting trials from past 3 months).",
"type": "module",
"main": "src/index.js",
"bin": {
"xiaoyibao-clinical-trials": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"test": "node src/test.js",
"prepublishOnly": "npm test"
},
"keywords": [
"mcp",
"model-context-protocol",
"clinical-trials",
"clinicaltrials-gov",
"medical",
"healthcare",
"research",
"api",
"llm",
"ai"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/xiaoyibao-clinical-trials.git"
},
"bugs": {
"url": "https://github.com/yourusername/xiaoyibao-clinical-trials/issues"
},
"homepage": "https://github.com/yourusername/xiaoyibao-clinical-trials#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"src/",
"README.md",
"README_CN.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"zod": "^3.25.76"
}
}