-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"name": "mcp-web-server",
"version": "2.0.0",
"description": "Self-hosted MCP web server — GitHub/arXiv dedicated channels, unified Readability extraction, Playwright fallback, SSRF-safe",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"claude",
"web-server",
"readability",
"github",
"arxiv"
],
"author": "fcqiao",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.6.0",
"jsdom": "^24.0.0",
"playwright": "^1.40.0",
"turndown": "^7.1.3",
"undici": "^6.27.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
"@types/node": "^20.0.0",
"@types/turndown": "^5.0.4",
"typescript": "^5.3.3",
"vitest": "^4.1.9"
}
}