@cyanheads/pubmed-mcp-server 2.5.4 → 2.5.5
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/CLAUDE.md +5 -3
- package/README.md +1 -1
- package/package.json +2 -2
- package/server.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -19,8 +19,9 @@ When the user asks what to do next, what's left, or needs direction, suggest rel
|
|
|
19
19
|
5. **Add tests** — scaffold tests for existing definitions using the `add-test` skill
|
|
20
20
|
6. **Field-test definitions** — exercise tools/resources/prompts with real inputs using the `field-test` skill, get a report of issues and pain points
|
|
21
21
|
7. **Run `devcheck`** — lint, format, typecheck, and security audit
|
|
22
|
-
8. **Run the `
|
|
23
|
-
9. **Run the `
|
|
22
|
+
8. **Run the `security-pass` skill** — audit handlers for MCP-specific security gaps: output injection, scope blast radius, input sinks, tenant isolation
|
|
23
|
+
9. **Run the `polish-docs-meta` skill** — finalize README, CHANGELOG, metadata, and agent protocol for shipping
|
|
24
|
+
10. **Run the `maintenance` skill** — sync skills and dependencies after framework updates
|
|
24
25
|
|
|
25
26
|
Tailor suggestions to what's actually missing or stale — don't recite the full list every time.
|
|
26
27
|
|
|
@@ -212,7 +213,7 @@ src/
|
|
|
212
213
|
|
|
213
214
|
Skills are modular instructions in `skills/` at the project root. Read them directly when a task matches — e.g., `skills/add-tool/SKILL.md` when adding a tool.
|
|
214
215
|
|
|
215
|
-
**Agent skill directory:** Copy skills into the directory your agent discovers (Claude Code: `.claude/skills/`, others: equivalent). This makes skills available as context without needing to reference `skills/` paths manually. After framework updates, re-
|
|
216
|
+
**Agent skill directory:** Copy skills into the directory your agent discovers (Claude Code: `.claude/skills/`, others: equivalent). This makes skills available as context without needing to reference `skills/` paths manually. After framework updates, run the `maintenance` skill — it re-syncs the agent directory automatically (Phase B).
|
|
216
217
|
|
|
217
218
|
Available skills:
|
|
218
219
|
|
|
@@ -227,6 +228,7 @@ Available skills:
|
|
|
227
228
|
| `add-service` | Scaffold a new service integration |
|
|
228
229
|
| `add-test` | Scaffold test file for a tool, resource, or service |
|
|
229
230
|
| `field-test` | Exercise tools/resources/prompts with real inputs, verify behavior, report issues |
|
|
231
|
+
| `security-pass` | Audit server for MCP-flavored security gaps: output injection, scope blast radius, input sinks, tenant isolation |
|
|
230
232
|
| `devcheck` | Lint, format, typecheck, audit |
|
|
231
233
|
| `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
|
|
232
234
|
| `maintenance` | Investigate changelogs, adopt upstream changes, sync skills after `bun update --latest` |
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](https://www.npmjs.com/package/@cyanheads/pubmed-mcp-server) [](https://www.npmjs.com/package/@cyanheads/pubmed-mcp-server) [](./CHANGELOG.md) [](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [](https://modelcontextprotocol.io/)
|
|
11
11
|
|
|
12
12
|
[](./LICENSE) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/pubmed-mcp-server",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.5",
|
|
4
4
|
"mcpName": "io.github.cyanheads/pubmed-mcp-server",
|
|
5
5
|
"description": "MCP server for PubMed/NCBI E-utilities integration. Search articles, fetch metadata, generate citations, explore MeSH terms, and discover related research.",
|
|
6
6
|
"type": "module",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"access": "public"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@cyanheads/mcp-ts-core": "^0.
|
|
71
|
+
"@cyanheads/mcp-ts-core": "^0.7.0",
|
|
72
72
|
"fast-xml-parser": "^5.7.1",
|
|
73
73
|
"pino-pretty": "^13.1.3",
|
|
74
74
|
"sanitize-html": "^2.17.3"
|
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.5.
|
|
9
|
+
"version": "2.5.5",
|
|
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.5.
|
|
22
|
+
"version": "2.5.5",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{
|
|
25
25
|
"type": "positional",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
61
61
|
"identifier": "@cyanheads/pubmed-mcp-server",
|
|
62
62
|
"runtimeHint": "bun",
|
|
63
|
-
"version": "2.5.
|
|
63
|
+
"version": "2.5.5",
|
|
64
64
|
"packageArguments": [
|
|
65
65
|
{
|
|
66
66
|
"type": "positional",
|