package.json•1.48 kB
{
"name": "arxiv-mcp-server",
"version": "0.1.0",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage"
},
"keywords": [
"mcp",
"model-context-protocol",
"arxiv",
"academic-papers",
"research",
"pdf",
"ai-assistant"
],
"author": "arXiv MCP Server Contributors",
"license": "MIT",
"description": "An MCP (Model Context Protocol) server that provides tools for interacting with the arXiv API to search and retrieve academic papers",
"repository": {
"type": "git",
"url": "https://github.com/your-username/arxiv-mcp-server.git"
},
"bugs": {
"url": "https://github.com/your-username/arxiv-mcp-server/issues"
},
"homepage": "https://github.com/your-username/arxiv-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.9.0",
"fs-extra": "^11.3.0",
"pdf-parse": "^1.1.1",
"typescript": "^5.8.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "^22.15.2",
"@types/pdf-parse": "^1.1.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}