package.json•1.1 kB
{
"name": "medical-mcp",
"version": "1.0.0",
"type": "module",
"bin": {
"medical-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc && chmod 755 build/index.js",
"start": "node build/index.js",
"start:http": "node build/index.js --http",
"start:http:port": "node build/index.js --http --port=3000",
"dev": "npm run build && npm run start",
"dev:http": "npm run build && npm run start:http"
},
"files": [
"build"
],
"main": "index.js",
"keywords": [
"medical",
"healthcare",
"drugs",
"fda",
"who",
"pubmed",
"mcp"
],
"author": "",
"license": "ISC",
"description": "A Model Context Protocol (MCP) server that provides comprehensive medical information by querying multiple authoritative medical APIs including FDA, WHO, PubMed, and RxNorm.",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"puppeteer": "^24.12.1",
"superagent": "^10.2.2",
"zod": "^3.25.75"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@types/superagent": "^8.1.9",
"typescript": "^5.8.3"
}
}