@cyanheads/pubmed-mcp-server
Version:
A Model Context Protocol (MCP) server enabling AI agents to intelligently search, retrieve, and analyze biomedical literature from PubMed via NCBI E-utilities. Built on the mcp-ts-template for robust, production-ready performance.
105 lines (104 loc) • 3.14 kB
JSON
{
"name": "@cyanheads/pubmed-mcp-server",
"version": "1.2.3",
"description": "A Model Context Protocol (MCP) server enabling AI agents to intelligently search, retrieve, and analyze biomedical literature from PubMed via NCBI E-utilities. Built on the mcp-ts-template for robust, production-ready performance.",
"main": "dist/index.js",
"files": [
"dist"
],
"bin": {
"pubmed-mcp-server": "dist/index.js"
},
"exports": "./dist/index.js",
"type": "module",
"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": "tsc && node --loader ts-node/esm scripts/make-executable.ts dist/index.js",
"start": "node dist/index.js",
"start:stdio": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=stdio node dist/index.js",
"start:http": "MCP_LOG_LEVEL=debug MCP_TRANSPORT_TYPE=http node dist/index.js",
"rebuild": "ts-node --esm scripts/clean.ts && npm run build",
"docs:generate": "typedoc --tsconfig ./tsconfig.typedoc.json",
"tree": "ts-node --esm scripts/tree.ts",
"fetch-spec": "ts-node --esm scripts/fetch-openapi-spec.ts",
"format": "prettier --write \"**/*.{ts,js,json,md,html,css}\"",
"inspector": "mcp-inspector --config mcp.json --server pubmed-mcp-server"
},
"dependencies": {
"@hono/node-server": "^1.14.4",
"@modelcontextprotocol/sdk": "^1.13.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.3",
"@types/sanitize-html": "^2.16.0",
"@types/validator": "13.15.2",
"axios": "^1.10.0",
"chrono-node": "^2.8.3",
"dotenv": "^16.5.0",
"fast-xml-parser": "^5.2.5",
"hono": "^4.8.2",
"jose": "^6.0.11",
"jsonwebtoken": "^9.0.2",
"openai": "^5.6.0",
"partial-json": "^0.1.7",
"sanitize-html": "^2.17.0",
"tiktoken": "^1.0.21",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"validator": "13.15.15",
"chart.js": "^4.5.0",
"chartjs-node-canvas": "^5.0.0",
"winston": "^3.17.0",
"winston-transport": "^4.9.0",
"zod": "^3.25.67"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agent",
"llm-integration",
"pubmed",
"ncbi",
"e-utilities",
"biomedical-research",
"scientific-literature",
"api-server",
"typescript",
"node",
"ai-tools",
"bioinformatics",
"health-tech",
"literature-search",
"pubmed-api"
],
"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"
}
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"js-yaml": "^4.1.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.5"
}
}