-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 782 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 782 Bytes
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
{
"name": "mcp-web-reader",
"version": "2.0.0",
"description": "MCP server for reading web content with Jina Reader and local parser support",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"keywords": ["mcp", "claude", "web-scraping", "jina-reader"],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"node-fetch": "^3.3.2",
"jsdom": "^24.0.0",
"turndown": "^7.1.3",
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/jsdom": "^21.1.6",
"@types/turndown": "^5.0.4",
"typescript": "^5.3.3"
}
}