-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.62 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
65
66
67
68
69
70
71
{
"name": "markfetch",
"version": "0.6.0",
"description": "Fetch a URL, return clean markdown. MCP server and CLI for AI agents.",
"license": "MIT",
"author": {
"name": "Serhii Vasylenko",
"email": "serhii@vasylenko.info",
"url": "https://devdosvid.blog"
},
"type": "module",
"private": false,
"engines": {
"node": ">=24"
},
"bin": {
"markfetch": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"markdown",
"fetch",
"html-to-markdown",
"scraping",
"readability",
"ai-agent",
"claude"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vasylenko/markfetch.git"
},
"bugs": {
"url": "https://github.com/vasylenko/markfetch/issues"
},
"homepage": "https://github.com/vasylenko/markfetch#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"postbuild": "node scripts/postbuild.mjs",
"test": "tsx --test tests/*.test.ts",
"inspect": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@mozilla/readability": "^0.5.0",
"commander": "^14.0.3",
"linkedom": "^0.18.0",
"turndown": "^7.0.0",
"turndown-plugin-gfm": "^1.0.2",
"undici": "^8.2.0",
"zod": "^3.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/turndown": "^5.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
}
}