@cyanheads/pubmed-mcp-server 2.6.6 → 2.6.7

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 CHANGED
@@ -1,8 +1,9 @@
1
1
  # Agent Protocol
2
2
 
3
3
  **Server:** @cyanheads/pubmed-mcp-server
4
- **Version:** 2.6.6
5
- **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
4
+ **Version:** 2.6.7
5
+ **Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.8.19`
6
+ **Engines:** Bun ≥1.3.2, Node ≥24.0.0
6
7
 
7
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.
8
9
 
@@ -256,19 +257,22 @@ Available skills:
256
257
  | `add-service` | Scaffold a new service integration |
257
258
  | `add-test` | Scaffold test file for a tool, resource, or service |
258
259
  | `field-test` | Exercise tools/resources/prompts with real inputs, verify behavior, report issues |
260
+ | `tool-defs-analysis` | Read-only audit of definition language: voice, leaks, defaults, recovery hints, examples |
259
261
  | `security-pass` | Audit server for MCP-flavored security gaps: output injection, scope blast radius, input sinks, tenant isolation |
260
262
  | `devcheck` | Lint, format, typecheck, audit |
261
263
  | `polish-docs-meta` | Finalize docs, README, metadata, and agent protocol for shipping |
262
264
  | `maintenance` | Investigate changelogs, adopt upstream changes, and sync skills after `bun update --latest` |
263
265
  | `release-and-publish` | Ship a release: verification gate, push commits+tags, publish to npm / MCP Registry / GHCR |
264
266
  | `api-auth` | Auth modes, scopes, JWT/OAuth |
267
+ | `api-canvas` | DataCanvas: register tabular data, run SQL, export, plus the `spillover()` helper for big result sets — Tier 3 opt-in |
265
268
  | `api-config` | AppConfig, parseConfig, env vars |
266
269
  | `api-context` | Context interface, logger, state, progress |
267
270
  | `api-errors` | McpError, JsonRpcErrorCode, error patterns |
268
271
  | `api-linter` | Definition lint rules reference (`format-parity`, `schema-*`, `server-json-*`, …) |
269
272
  | `api-services` | LLM, Speech, Graph services |
273
+ | `api-telemetry` | OTel catalog: spans, metrics, completion logs, env config, cardinality rules |
270
274
  | `api-testing` | createMockContext, test patterns |
271
- | `api-utils` | Formatting, parsing, security, pagination, scheduling |
275
+ | `api-utils` | Formatting, parsing, security, pagination, scheduling, telemetry helpers |
272
276
  | `api-workers` | Cloudflare Workers runtime |
273
277
  | `report-issue-framework` | File bug/feature request against @cyanheads/mcp-ts-core |
274
278
  | `report-issue-local` | File bug/feature request against this server's repo |
package/Dockerfile CHANGED
@@ -4,7 +4,7 @@
4
4
  # This stage installs all dependencies (including dev), builds the TypeScript
5
5
  # source code into JavaScript, and prepares the production assets.
6
6
  # ==============================================================================
7
- FROM oven/bun:1 AS build
7
+ FROM oven/bun:1.3 AS build
8
8
 
9
9
  WORKDIR /usr/src/app
10
10
 
@@ -28,7 +28,7 @@ RUN bun run build
28
28
  # application. It uses a slim base image and only includes production
29
29
  # dependencies and build artifacts.
30
30
  # ==============================================================================
31
- FROM oven/bun:1-slim AS production
31
+ FROM oven/bun:1.3-slim AS production
32
32
 
33
33
  WORKDIR /usr/src/app
34
34
 
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
  <div align="center">
9
9
 
10
- [![npm](https://img.shields.io/npm/v/@cyanheads/pubmed-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/pubmed-mcp-server) [![Version](https://img.shields.io/badge/Version-2.6.6-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/)
10
+ [![npm](https://img.shields.io/npm/v/@cyanheads/pubmed-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/pubmed-mcp-server) [![Version](https://img.shields.io/badge/Version-2.6.7-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/)
11
11
 
12
12
  [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
13
13
 
@@ -6,14 +6,14 @@
6
6
  */
7
7
  import { z } from '@cyanheads/mcp-ts-core';
8
8
  declare const ServerConfigSchema: z.ZodObject<{
9
- apiKey: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodString>>;
9
+ apiKey: z.ZodPreprocess<z.ZodOptional<z.ZodString>>;
10
10
  toolIdentifier: z.ZodDefault<z.ZodString>;
11
- adminEmail: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodEmail>>;
11
+ adminEmail: z.ZodPreprocess<z.ZodOptional<z.ZodEmail>>;
12
12
  requestDelayMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
13
13
  maxRetries: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
14
14
  timeoutMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
15
15
  totalDeadlineMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
16
- unpaywallEmail: z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodOptional<z.ZodEmail>>;
16
+ unpaywallEmail: z.ZodPreprocess<z.ZodOptional<z.ZodEmail>>;
17
17
  unpaywallTimeoutMs: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
18
18
  }, z.core.$strip>;
19
19
  export type ServerConfig = z.infer<typeof ServerConfigSchema>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cyanheads/pubmed-mcp-server",
3
- "version": "2.6.6",
3
+ "version": "2.6.7",
4
4
  "mcpName": "io.github.cyanheads/pubmed-mcp-server",
5
5
  "description": "MCP server for PubMed/NCBI E-utilities integration. Search articles, fetch metadata and open-access full text (PMC + Unpaywall), generate citations, explore MeSH terms, and discover related research.",
6
6
  "type": "module",
@@ -65,29 +65,29 @@
65
65
  "packageManager": "bun@1.3.2",
66
66
  "engines": {
67
67
  "bun": ">=1.3.2",
68
- "node": ">=22.0.0"
68
+ "node": ">=24.0.0"
69
69
  },
70
70
  "publishConfig": {
71
71
  "access": "public"
72
72
  },
73
73
  "dependencies": {
74
- "@cyanheads/mcp-ts-core": "^0.8.6",
74
+ "@cyanheads/mcp-ts-core": "^0.8.19",
75
75
  "defuddle": "^0.18.1",
76
- "fast-xml-parser": "^5.7.2",
76
+ "fast-xml-parser": "^5.7.3",
77
77
  "linkedom": "^0.18.12",
78
78
  "pino-pretty": "^13.1.3",
79
79
  "sanitize-html": "^2.17.3",
80
80
  "unpdf": "^1.6.2"
81
81
  },
82
82
  "devDependencies": {
83
- "@biomejs/biome": "^2.4.13",
84
- "@types/node": "^25.6.0",
83
+ "@biomejs/biome": "^2.4.14",
84
+ "@types/node": "^25.6.2",
85
85
  "@types/sanitize-html": "^2.16.1",
86
86
  "@vitest/coverage-istanbul": "^4.1.5",
87
87
  "depcheck": "^1.4.7",
88
88
  "fast-check": "^4.7.0",
89
89
  "ignore": "^7.0.5",
90
- "tsc-alias": "^1.8.16",
90
+ "tsc-alias": "^1.8.17",
91
91
  "typescript": "^6.0.3",
92
92
  "vitest": "^4.1.5"
93
93
  }
package/server.json CHANGED
@@ -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.6.6",
22
+ "version": "2.6.7",
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.6.6",
69
+ "version": "2.6.7",
70
70
  "packageArguments": [
71
71
  {
72
72
  "type": "positional",