package.json•1.32 kB
{
"name": "@langgpt/arxiv-paper-mcp",
"version": "1.2.1",
"description": "一个简化的基于 arXiv 的论文检索与内容解析 MCP 服务器",
"type": "module",
"main": "build/index.js",
"bin": {
"arxiv-paper-mcp": "build/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"arxiv",
"paper",
"mcp",
"model-context-protocol",
"pdf",
"research"
],
"author": {
"name": "yzfly",
"email": "yz.liu.me@gmail.com",
"url": "https://github.com/yzfly"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yzfly/arxiv-paper-mcp.git"
},
"bugs": {
"url": "https://github.com/yzfly/arxiv-paper-mcp/issues"
},
"homepage": "https://github.com/yzfly/arxiv-paper-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@agentic/arxiv": "^7.6.7",
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.9",
"jsdom": "^25.0.0",
"pdfreader": "^3.0.3"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20",
"typescript": "^5.0.0"
}
}