clinicaltrialsgov-mcp-server 2.4.11 → 2.4.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -10
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>clinicaltrialsgov-mcp-server</h1>
|
|
3
|
-
<p>
|
|
4
|
-
|
|
3
|
+
<p><b>MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.</b>
|
|
4
|
+
<div>7 Tools • 1 Resource • 1 Prompt</div>
|
|
5
5
|
</p>
|
|
6
|
-
<p><b>7 Tools · 1 Resource · 1 Prompt</b></p>
|
|
7
6
|
</div>
|
|
8
7
|
|
|
9
8
|
<div align="center">
|
|
10
9
|
|
|
11
|
-
[](https://www.npmjs.com/package/clinicaltrialsgov-mcp-server)
|
|
12
|
-
[](https://github.com/users/cyanheads/packages/container/package/clinicaltrialsgov-mcp-server)
|
|
13
|
-
[](./CHANGELOG.md)
|
|
14
|
-
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
10
|
+
[](https://www.npmjs.com/package/clinicaltrialsgov-mcp-server) [](https://github.com/users/cyanheads/packages/container/package/clinicaltrialsgov-mcp-server) [](./CHANGELOG.md) [](https://modelcontextprotocol.io/) [](./LICENSE) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
15
11
|
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div align="center">
|
|
15
|
+
|
|
16
|
+
[](https://github.com/cyanheads/clinicaltrialsgov-mcp-server/releases/latest/download/clinicaltrialsgov-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=clinicaltrials&config=eyJjb21tYW5kIjoiYnVueCIsImFyZ3MiOlsiY2xpbmljYWx0cmlhbHNnb3YtbWNwLXNlcnZlckBsYXRlc3QiXSwiZW52Ijp7Ik1DUF9UUkFOU1BPUlRfVFlQRSI6InN0ZGlvIiwiTUNQX0xPR19MRVZFTCI6ImluZm8ifX0=) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22clinicaltrials%22%2C%22config%22%3A%7B%22command%22%3A%22bunx%22%2C%22args%22%3A%5B%22clinicaltrialsgov-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22MCP_TRANSPORT_TYPE%22%3A%22stdio%22%2C%22MCP_LOG_LEVEL%22%3A%22info%22%7D%7D%7D)
|
|
16
17
|
|
|
17
|
-
[](./LICENSE)
|
|
19
|
-
[](https://www.typescriptlang.org/)
|
|
18
|
+
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
20
19
|
|
|
21
20
|
</div>
|
|
22
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clinicaltrialsgov-mcp-server",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.12",
|
|
4
4
|
"mcpName": "io.github.cyanheads/clinicaltrialsgov-mcp-server",
|
|
5
5
|
"description": "MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -55,6 +55,10 @@
|
|
|
55
55
|
"coverage:commit": "bun run scripts/update-coverage.ts --commit",
|
|
56
56
|
"audit": "bun audit",
|
|
57
57
|
"audit:fix": "bun audit --fix",
|
|
58
|
+
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
|
|
59
|
+
"list-skills": "bun run scripts/list-skills.ts",
|
|
60
|
+
"lint:packaging": "bun run scripts/lint-packaging.ts",
|
|
61
|
+
"bundle": "bun run build && bunx -y @anthropic-ai/mcpb pack . dist/clinicaltrialsgov-mcp-server.mcpb",
|
|
58
62
|
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
59
63
|
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
60
64
|
"publish-mcp": "bunx mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && bunx mcp-publisher publish"
|
|
@@ -78,7 +82,9 @@
|
|
|
78
82
|
"bioinformatics",
|
|
79
83
|
"health-tech",
|
|
80
84
|
"hono",
|
|
85
|
+
"bun",
|
|
81
86
|
"stdio",
|
|
87
|
+
"streamable-http",
|
|
82
88
|
"http"
|
|
83
89
|
],
|
|
84
90
|
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/clinicaltrialsgov-mcp-server#readme)",
|
|
@@ -99,12 +105,13 @@
|
|
|
99
105
|
"node": ">=24.0.0"
|
|
100
106
|
},
|
|
101
107
|
"dependencies": {
|
|
102
|
-
"@cyanheads/mcp-ts-core": "^0.9.
|
|
103
|
-
"pino-pretty": "^13.1.3"
|
|
108
|
+
"@cyanheads/mcp-ts-core": "^0.9.6",
|
|
109
|
+
"pino-pretty": "^13.1.3",
|
|
110
|
+
"zod": "^4.4.3"
|
|
104
111
|
},
|
|
105
112
|
"devDependencies": {
|
|
106
113
|
"@biomejs/biome": "^2.4.15",
|
|
107
|
-
"@cloudflare/workers-types": "^4.
|
|
114
|
+
"@cloudflare/workers-types": "^4.20260523.1",
|
|
108
115
|
"@types/bun": "^1.3.14",
|
|
109
116
|
"@types/node": "^25.9.1",
|
|
110
117
|
"@vitest/coverage-istanbul": "^4.1.7",
|