@cyanheads/pubmed-mcp-server 2.7.8 → 2.7.9
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/AGENTS.md +7 -2
- package/CLAUDE.md +7 -2
- package/README.md +5 -5
- package/package.json +5 -4
- package/server.json +3 -3
package/AGENTS.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** @cyanheads/pubmed-mcp-server
|
|
4
|
-
**Version:** 2.7.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.
|
|
4
|
+
**Version:** 2.7.9
|
|
5
|
+
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
|
|
6
6
|
**Engines:** Bun ≥1.3.2, Node ≥24.0.0
|
|
7
7
|
|
|
8
8
|
> **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
|
|
@@ -269,8 +269,10 @@ Available skills:
|
|
|
269
269
|
| `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
|
|
270
270
|
| `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
|
|
271
271
|
| `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
|
|
272
|
+
| `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
|
|
272
273
|
| `api-auth` | Auth modes, scopes, JWT/OAuth |
|
|
273
274
|
| `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper for big result sets — Tier 3 opt-in |
|
|
275
|
+
| `api-mirror` | MirrorService: persistent, self-refreshing local SQLite mirror of bulk upstream datasets — Tier 3 opt-in, Node/Bun only |
|
|
274
276
|
| `api-config` | AppConfig, parseConfig, env vars |
|
|
275
277
|
| `api-context` | Context interface, logger, state, progress |
|
|
276
278
|
| `api-errors` | McpError, JsonRpcErrorCode, error patterns |
|
|
@@ -283,6 +285,8 @@ Available skills:
|
|
|
283
285
|
| `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
|
|
284
286
|
| `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
|
|
285
287
|
|
|
288
|
+
**Chaining skills into pipelines.** When the user wants a multi-phase effort — build this server out, QA-and-fix the surface, update-and-ship — *and you can spawn sub-agents*, `skills/orchestrations/SKILL.md` sequences the task skills above into a gated pipeline with verification at each step. Read it to drive the run. Optional: skip it if you can't orchestrate sub-agents, and ignore it entirely if you were *spawned* as one — you've already been scoped to a single phase.
|
|
289
|
+
|
|
286
290
|
When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
|
|
287
291
|
|
|
288
292
|
---
|
|
@@ -303,6 +307,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
303
307
|
| `bun run lint:packaging` | Validate env var alignment between `manifest.json` and `server.json` (skipped cleanly when `manifest.json` is absent) |
|
|
304
308
|
| `bun run list-skills` | List skills in `skills/` with name + description |
|
|
305
309
|
| `bun run bundle` | Build and pack as `dist/pubmed-mcp-server.mcpb` for one-click Claude Desktop install |
|
|
310
|
+
| `bun run release:github` | Create GitHub Release from an annotated tag — enforces `v<VERSION>: <subject>` title, attaches `.mcpb` bundle |
|
|
306
311
|
| `bun run start:stdio` | Production mode (stdio) |
|
|
307
312
|
| `bun run start:http` | Production mode (HTTP) |
|
|
308
313
|
|
package/CLAUDE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** @cyanheads/pubmed-mcp-server
|
|
4
|
-
**Version:** 2.7.
|
|
5
|
-
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.
|
|
4
|
+
**Version:** 2.7.9
|
|
5
|
+
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.21`
|
|
6
6
|
**Engines:** Bun ≥1.3.2, Node ≥24.0.0
|
|
7
7
|
|
|
8
8
|
> **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
|
|
@@ -269,8 +269,10 @@ Available skills:
|
|
|
269
269
|
| `maintenance` | Investigate changelogs, adopt upstream changes, sync skills to agent dirs |
|
|
270
270
|
| `git-wrapup` | Land working-tree changes as a versioned commit + annotated tag — version bump, changelog, verify, tag. Local only. |
|
|
271
271
|
| `release-and-publish` | Push + npm + MCP Registry + GH Release + Docker. Picks up from `git-wrapup` |
|
|
272
|
+
| `orchestrations` | Chain task skills into a gated multi-phase pipeline — build-out, QA-fix, update-ship — when you can spawn sub-agents |
|
|
272
273
|
| `api-auth` | Auth modes, scopes, JWT/OAuth |
|
|
273
274
|
| `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper for big result sets — Tier 3 opt-in |
|
|
275
|
+
| `api-mirror` | MirrorService: persistent, self-refreshing local SQLite mirror of bulk upstream datasets — Tier 3 opt-in, Node/Bun only |
|
|
274
276
|
| `api-config` | AppConfig, parseConfig, env vars |
|
|
275
277
|
| `api-context` | Context interface, logger, state, progress |
|
|
276
278
|
| `api-errors` | McpError, JsonRpcErrorCode, error patterns |
|
|
@@ -283,6 +285,8 @@ Available skills:
|
|
|
283
285
|
| `report-issue-framework` | File a bug or feature request against `@cyanheads/mcp-ts-core` via `gh` CLI |
|
|
284
286
|
| `report-issue-local` | File a bug or feature request against this server's own repo via `gh` CLI |
|
|
285
287
|
|
|
288
|
+
**Chaining skills into pipelines.** When the user wants a multi-phase effort — build this server out, QA-and-fix the surface, update-and-ship — *and you can spawn sub-agents*, `skills/orchestrations/SKILL.md` sequences the task skills above into a gated pipeline with verification at each step. Read it to drive the run. Optional: skip it if you can't orchestrate sub-agents, and ignore it entirely if you were *spawned* as one — you've already been scoped to a single phase.
|
|
289
|
+
|
|
286
290
|
When you complete a skill's checklist, check the boxes and add a completion timestamp at the end (e.g., `Completed: 2026-03-11`).
|
|
287
291
|
|
|
288
292
|
---
|
|
@@ -303,6 +307,7 @@ When you complete a skill's checklist, check the boxes and add a completion time
|
|
|
303
307
|
| `bun run lint:packaging` | Validate env var alignment between `manifest.json` and `server.json` (skipped cleanly when `manifest.json` is absent) |
|
|
304
308
|
| `bun run list-skills` | List skills in `skills/` with name + description |
|
|
305
309
|
| `bun run bundle` | Build and pack as `dist/pubmed-mcp-server.mcpb` for one-click Claude Desktop install |
|
|
310
|
+
| `bun run release:github` | Create GitHub Release from an annotated tag — enforces `v<VERSION>: <subject>` title, attaches `.mcpb` bundle |
|
|
306
311
|
| `bun run start:stdio` | Production mode (stdio) |
|
|
307
312
|
| `bun run start:http` | Production mode (HTTP) |
|
|
308
313
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/pubmed-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/pubmed-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
13
13
|
|
|
14
14
|
</div>
|
|
15
15
|
|
|
@@ -204,7 +204,7 @@ A public instance is available at `https://pubmed.caseyjhand.com/mcp` — no ins
|
|
|
204
204
|
```json
|
|
205
205
|
{
|
|
206
206
|
"mcpServers": {
|
|
207
|
-
"pubmed": {
|
|
207
|
+
"pubmed-mcp-server": {
|
|
208
208
|
"type": "streamable-http",
|
|
209
209
|
"url": "https://pubmed.caseyjhand.com/mcp"
|
|
210
210
|
}
|
|
@@ -219,7 +219,7 @@ Add the following to your MCP client configuration file.
|
|
|
219
219
|
```json
|
|
220
220
|
{
|
|
221
221
|
"mcpServers": {
|
|
222
|
-
"pubmed": {
|
|
222
|
+
"pubmed-mcp-server": {
|
|
223
223
|
"type": "stdio",
|
|
224
224
|
"command": "bunx",
|
|
225
225
|
"args": ["@cyanheads/pubmed-mcp-server@latest"],
|
|
@@ -238,7 +238,7 @@ Or with npx (no Bun required):
|
|
|
238
238
|
```json
|
|
239
239
|
{
|
|
240
240
|
"mcpServers": {
|
|
241
|
-
"pubmed": {
|
|
241
|
+
"pubmed-mcp-server": {
|
|
242
242
|
"type": "stdio",
|
|
243
243
|
"command": "npx",
|
|
244
244
|
"args": ["-y", "@cyanheads/pubmed-mcp-server@latest"],
|
|
@@ -257,7 +257,7 @@ Or with Docker:
|
|
|
257
257
|
```json
|
|
258
258
|
{
|
|
259
259
|
"mcpServers": {
|
|
260
|
-
"pubmed": {
|
|
260
|
+
"pubmed-mcp-server": {
|
|
261
261
|
"type": "stdio",
|
|
262
262
|
"command": "docker",
|
|
263
263
|
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/pubmed-mcp-server:latest"]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/pubmed-mcp-server",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.9",
|
|
4
4
|
"mcpName": "io.github.cyanheads/pubmed-mcp-server",
|
|
5
5
|
"description": "Search PubMed/Europe PMC, fetch articles and full text (PMC/EPMC/Unpaywall), citations, MeSH terms via MCP. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/pubmed-mcp-server.mcpb",
|
|
27
27
|
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
28
28
|
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
29
|
+
"release:github": "bun run scripts/release-github.ts",
|
|
29
30
|
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish",
|
|
30
31
|
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
31
32
|
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js"
|
|
@@ -80,7 +81,7 @@
|
|
|
80
81
|
"access": "public"
|
|
81
82
|
},
|
|
82
83
|
"dependencies": {
|
|
83
|
-
"@cyanheads/mcp-ts-core": "^0.9.
|
|
84
|
+
"@cyanheads/mcp-ts-core": "^0.9.21",
|
|
84
85
|
"defuddle": "^0.18.1",
|
|
85
86
|
"fast-xml-parser": "^5.8.0",
|
|
86
87
|
"linkedom": "^0.18.12",
|
|
@@ -93,12 +94,12 @@
|
|
|
93
94
|
"@biomejs/biome": "^2.4.16",
|
|
94
95
|
"@types/node": "^25.9.1",
|
|
95
96
|
"@types/sanitize-html": "^2.16.1",
|
|
96
|
-
"@vitest/coverage-istanbul": "^4.1.
|
|
97
|
+
"@vitest/coverage-istanbul": "^4.1.8",
|
|
97
98
|
"depcheck": "^1.4.7",
|
|
98
99
|
"fast-check": "^4.8.0",
|
|
99
100
|
"ignore": "^7.0.5",
|
|
100
101
|
"tsc-alias": "^1.8.17",
|
|
101
102
|
"typescript": "^6.0.3",
|
|
102
|
-
"vitest": "^4.1.
|
|
103
|
+
"vitest": "^4.1.8"
|
|
103
104
|
}
|
|
104
105
|
}
|
package/server.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/pubmed-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "2.7.
|
|
9
|
+
"version": "2.7.9",
|
|
10
10
|
"remotes": [
|
|
11
11
|
{
|
|
12
12
|
"type": "streamable-http",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
20
20
|
"identifier": "@cyanheads/pubmed-mcp-server",
|
|
21
21
|
"runtimeHint": "bun",
|
|
22
|
-
"version": "2.7.
|
|
22
|
+
"version": "2.7.9",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{
|
|
25
25
|
"type": "positional",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
67
67
|
"identifier": "@cyanheads/pubmed-mcp-server",
|
|
68
68
|
"runtimeHint": "bun",
|
|
69
|
-
"version": "2.7.
|
|
69
|
+
"version": "2.7.9",
|
|
70
70
|
"packageArguments": [
|
|
71
71
|
{
|
|
72
72
|
"type": "positional",
|