-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 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
{
"name": "@pharmatools/pubcrawl",
"version": "2.1.1",
"description": "MCP server for PubMed literature search and US/UK drug labelling — built by PharmaTools.AI",
"mcpName": "io.github.nickjlamb/pubcrawl",
"author": "PharmaTools.AI",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": {
"pubcrawl": "dist/index.js"
},
"files": [
"dist",
"server.json"
],
"keywords": [
"mcp",
"mcp-server",
"pubmed",
"ncbi",
"biomedical",
"literature",
"drug-labelling",
"openfda",
"dailymed",
"pharma"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"cheerio": "^1.2.0",
"dotenv": "^16.0.0",
"fast-xml-parser": "^4.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/nickjlamb/pubcrawl"
}
}