@cyanheads/pubmed-mcp-server 2.5.1 → 2.5.2
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 +1 -1
- package/README.md +3 -1
- package/package.json +2 -2
- package/server.json +9 -3
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** @cyanheads/pubmed-mcp-server
|
|
4
|
-
**Version:** 2.5.
|
|
4
|
+
**Version:** 2.5.2
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
6
6
|
|
|
7
7
|
> **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.
|
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
|
|
|
@@ -277,6 +277,8 @@ All configuration is validated at startup via Zod schemas in `src/config/server-
|
|
|
277
277
|
|:---|:---|:---|
|
|
278
278
|
| `MCP_TRANSPORT_TYPE` | Transport: `stdio` or `http` | `stdio` |
|
|
279
279
|
| `MCP_HTTP_PORT` | HTTP server port | `3010` |
|
|
280
|
+
| `MCP_HTTP_ENDPOINT_PATH` | HTTP endpoint path where the MCP server is mounted | `/mcp` |
|
|
281
|
+
| `MCP_PUBLIC_URL` | Public origin override for TLS-terminating reverse-proxy deployments (landing page, Server Card, RFC 9728 metadata). | none |
|
|
280
282
|
| `MCP_AUTH_MODE` | Authentication: `none`, `jwt`, or `oauth` | `none` |
|
|
281
283
|
| `MCP_LOG_LEVEL` | Log level (`debug`, `info`, `warning`, `error`, etc.) | `info` |
|
|
282
284
|
| `LOGS_DIR` | Directory for log files (Node.js only). | `<project-root>/logs` |
|
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.2",
|
|
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",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@cyanheads/mcp-ts-core": "^0.6.
|
|
70
|
+
"@cyanheads/mcp-ts-core": "^0.6.8",
|
|
71
71
|
"fast-xml-parser": "^5.7.1",
|
|
72
72
|
"pino-pretty": "^13.1.3",
|
|
73
73
|
"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.2",
|
|
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.2",
|
|
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.2",
|
|
64
64
|
"packageArguments": [
|
|
65
65
|
{
|
|
66
66
|
"type": "positional",
|
|
@@ -93,6 +93,12 @@
|
|
|
93
93
|
"isRequired": false,
|
|
94
94
|
"default": "/mcp"
|
|
95
95
|
},
|
|
96
|
+
{
|
|
97
|
+
"name": "MCP_PUBLIC_URL",
|
|
98
|
+
"description": "Public origin override for deployments behind a TLS-terminating reverse proxy (e.g. https://mcp.example.com).",
|
|
99
|
+
"format": "string",
|
|
100
|
+
"isRequired": false
|
|
101
|
+
},
|
|
96
102
|
{
|
|
97
103
|
"name": "MCP_AUTH_MODE",
|
|
98
104
|
"description": "Authentication mode to use: 'none', 'jwt', or 'oauth'.",
|