@jnohlgard/fetch-mcp 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +168 -0
- package/dist/index.js +35973 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jnohlgard/fetch-mcp",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "MCP server and CLI for fetching web content as HTML, Markdown, plain text, JSON, or YouTube transcripts",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"author": "zcaceres (@zachcaceres zach.dev)",
|
|
9
|
+
"contributors": [
|
|
10
|
+
"pwilkin (ilintar@gmail.com)"
|
|
11
|
+
],
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/jnohlgard/fetch-mcp.git"
|
|
15
|
+
},
|
|
16
|
+
"homepage": "https://github.com/jnohlgard/fetch-mcp#readme",
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/jnohlgard/fetch-mcp/issues"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md",
|
|
23
|
+
"LICENSE"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "bun build src/index.ts --outdir dist --target node --external jsdom --external @mozilla/readability --external turndown",
|
|
27
|
+
"prepublishOnly": "bun run build",
|
|
28
|
+
"dev": "bun run --watch src/index.ts",
|
|
29
|
+
"start": "bun run src/index.ts",
|
|
30
|
+
"test": "bun test",
|
|
31
|
+
"typecheck": "tsc --noEmit",
|
|
32
|
+
"publish:npm": "bun run build && bun test && npm publish"
|
|
33
|
+
},
|
|
34
|
+
"bin": {
|
|
35
|
+
"fetch-mcp": "dist/index.js"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"mcp",
|
|
42
|
+
"fetch",
|
|
43
|
+
"web",
|
|
44
|
+
"scrape",
|
|
45
|
+
"markdown",
|
|
46
|
+
"youtube",
|
|
47
|
+
"transcript"
|
|
48
|
+
],
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@modelcontextprotocol/server": "^2.0.0",
|
|
51
|
+
"@mozilla/readability": "^0.6.0",
|
|
52
|
+
"ip-address": "^10.7.0",
|
|
53
|
+
"jsdom": "^30.0.1",
|
|
54
|
+
"turndown": "^7.2.4",
|
|
55
|
+
"which": "^7.0.0",
|
|
56
|
+
"zod": "^4.6.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@modelcontextprotocol/client": "^2.0.0",
|
|
60
|
+
"@types/bun": "latest",
|
|
61
|
+
"@types/jsdom": "^30.0.0",
|
|
62
|
+
"@types/mozilla__readability": "^0.4.2",
|
|
63
|
+
"@types/turndown": "^5.0.6",
|
|
64
|
+
"typescript": "^7.0.2"
|
|
65
|
+
}
|
|
66
|
+
}
|