generated from cyanheads/mcp-ts-core
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 5.84 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 5.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "@cyanheads/pubmed-mcp-server",
"version": "2.1.6",
"mcpName": "io.github.cyanheads/pubmed-mcp-server",
"description": "MCP server for PubMed/NCBI E-utilities integration. Search articles, fetch metadata, generate citations, explore MeSH terms, and discover related research.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"bin": {
"pubmed-mcp-server": "dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./*": "./dist/*"
},
"type": "module",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/cyanheads/pubmed-mcp-server.git"
},
"bugs": {
"url": "https://github.com/cyanheads/pubmed-mcp-server/issues"
},
"homepage": "https://github.com/cyanheads/pubmed-mcp-server#readme",
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --external pino --external pino-pretty",
"build:worker": "bun build ./src/worker.ts --outdir ./dist --target bun --no-external",
"deploy:dev": "MCP_TRANSPORT_TYPE=http bunx wrangler dev",
"deploy:prod": "MCP_TRANSPORT_TYPE=http bunx wrangler deploy",
"start": "bun ./dist/index.js",
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
"dev": "bun --watch src/index.ts",
"dev:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio bun --watch src/index.ts",
"dev:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http bun --watch src/index.ts",
"devdocs": "bun run scripts/devdocs.ts",
"devcheck": "bun run scripts/devcheck.ts",
"rebuild": "bun run scripts/clean.ts && bun run build",
"docs:generate": "bunx typedoc",
"depcheck": "bunx depcheck",
"lint": "biome check",
"format": "biome check --write --unsafe",
"typecheck": "bunx tsc --noEmit",
"typecheck:scripts": "bunx tsc --project tsconfig.scripts.json --noEmit",
"tree": "bun run scripts/tree.ts",
"fetch-spec": "bun run scripts/fetch-openapi-spec.ts",
"prepare": "bunx husky",
"inspector": "bunx mcp-inspector --config mcp.json --server pubmed-mcp-server",
"test": "bunx vitest run",
"test:all": "bun run test && bun run test:conformance && bun run test:fuzz",
"test:conformance": "bunx vitest run --config vitest.conformance.ts",
"test:fuzz": "bunx vitest run fuzz",
"test:coverage": "bunx vitest run --coverage",
"coverage:update": "bun run scripts/update-coverage.ts",
"coverage:commit": "bun run scripts/update-coverage.ts --commit",
"audit": "bun audit",
"audit:fix": "bun audit --fix",
"publish-mcp": "bunx mcp-publisher publish"
},
"resolutions": {
"@hono/node-server": "1.19.10",
"@isaacs/brace-expansion": "5.0.1",
"chrono-node": "2.9.0",
"diff": "8.0.3",
"dotenv": "17.3.1",
"hono": "4.12.5",
"markdown-it": "14.1.1",
"qs": "6.15.0",
"zod": "4.3.6",
"typescript": "5.9.3",
"minimatch": "3.1.5",
"ajv": "8.18.0",
"lodash": "4.17.23",
"rollup": "4.59.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260307.1",
"@biomejs/biome": "2.4.6",
"@hono/mcp": "^0.2.4",
"@traversable/registry": "^0.0.49",
"@traversable/zod-test": "^0.0.28",
"@traversable/zod-types": "^0.0.30",
"@types/bun": "^1.3.10",
"@types/diff": "^8.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.5",
"@types/node-cron": "^3.0.11",
"@types/papaparse": "^5.5.2",
"@types/sanitize-html": "^2.16.1",
"@types/validator": "13.15.10",
"@vitest/coverage-istanbul": "4.0.18",
"bun-types": "^1.3.10",
"clipboardy": "^5.3.1",
"depcheck": "^1.4.7",
"diff": "^8.0.3",
"execa": "^9.6.1",
"fast-check": "^4.6.0",
"husky": "^9.1.7",
"ignore": "^7.0.5",
"msw": "^2.12.10",
"repomix": "^1.12.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18"
},
"keywords": [
"pubmed",
"ncbi",
"biomedical",
"research",
"citations",
"mesh",
"mcp",
"model-context-protocol",
"mcp-server",
"typescript",
"ai-agent",
"e-utilities"
],
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/pubmed-mcp-server#readme)",
"license": "Apache-2.0",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cyanheads"
},
{
"type": "buy_me_a_coffee",
"url": "https://www.buymeacoffee.com/cyanheads"
}
],
"packageManager": "bun@1.3.2",
"engines": {
"bun": ">=1.3.2",
"node": ">=22.0.0"
},
"depcheck": {
"ignores": ["bun", "repomix", "@cyanheads/pubmed-mcp-server"]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@hono/node-server": "^1.19.10",
"@hono/otel": "^1.1.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/auto-instrumentations-node": "^0.71.0",
"@opentelemetry/exporter-metrics-otlp-http": "^0.213.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
"@opentelemetry/instrumentation-pino": "^0.59.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-metrics": "^2.6.0",
"@opentelemetry/sdk-node": "^0.213.0",
"@opentelemetry/sdk-trace-node": "^2.6.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@supabase/supabase-js": "^2.98.0",
"chrono-node": "^2.9.0",
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.4.2",
"hono": "^4.12.5",
"jose": "^6.2.1",
"js-yaml": "^4.1.1",
"node-cron": "^4.2.1",
"papaparse": "^5.5.3",
"partial-json": "^0.1.7",
"pdf-lib": "^1.17.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sanitize-html": "^2.17.1",
"unpdf": "^1.4.0",
"validator": "13.15.26",
"zod": "^4.3.6"
}
}