-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.54 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "scrapedo-mcp-server",
"version": "1.2.8",
"description": "Web scraping for Claude Desktop, Codex, and Gemini using Scrapedo API. Simple setup with npx.",
"type": "module",
"main": "dist/index.js",
"bin": {
"scrapedo-mcp-server": "dist/cli.js",
"scrapedo-mcp": "dist/cli.js"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "tsx watch src/index.ts",
"test": "npm run test:jest",
"test:jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"claude-desktop",
"codex",
"gemini",
"scraping",
"scrapedo",
"web-scraping",
"proxy",
"api",
"automation"
],
"author": "umutc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/umutc/scrapedo-mcp-server.git"
},
"bugs": {
"url": "https://github.com/umutc/scrapedo-mcp-server/issues"
},
"homepage": "https://github.com/umutc/scrapedo-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.9",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"https-proxy-agent": "^7.0.6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.5",
"tsx": "^4.19.2",
"typescript": "^5.3.3"
}
}