-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.02 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
{
"name": "koon-mcp",
"version": "0.8.1",
"description": "MCP server that fetches web content using koonjs browser impersonation — bypasses Cloudflare, Akamai, and other bot detection",
"type": "module",
"bin": {
"koon-mcp": "build/index.js"
},
"files": [
"build/",
".claude-plugin/",
".mcp.json"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude",
"fetch",
"browser-impersonation",
"cloudflare",
"akamai",
"koon",
"web-scraping",
"tls-fingerprint"
],
"repository": {
"type": "git",
"url": "https://github.com/scrape-hub/koon-mcp"
},
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"jsdom": "^26.0.0",
"koonjs": "^0.8.1",
"turndown": "^7.2.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/turndown": "^5.0.6",
"typescript": "^5.7.0"
}
}