package.json•1.3 kB
{
"name": "unpaywall-mcp",
"version": "0.1.1",
"private": false,
"description": "MCP server for Unpaywall: DOI metadata, title search, OA links, and PDF text extraction",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"bin": {
"unpaywall-mcp": "bin/unpaywall-mcp.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"unpaywall",
"oa",
"open-access"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ElliotPadfield/unpaywall-mcp.git"
},
"homepage": "https://github.com/ElliotPadfield/unpaywall-mcp#readme",
"bugs": {
"url": "https://github.com/ElliotPadfield/unpaywall-mcp/issues"
},
"author": "Elliot Padfield",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.3",
"pdf-parse": "^1.1.1"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/pdf-parse": "^1.1.5",
"tsx": "^4.16.2",
"typescript": "^5.4.0"
}
}