@j0hanz/fetch-url-mcp 1.12.13 → 1.13.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/README.md +1 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://insiders.vscode.dev/redirect/mcp/install?name=fetch-url&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40j0hanz%2Ffetch-url-mcp%40latest%22%5D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=fetch-url&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40j0hanz%2Ffetch-url-mcp%40latest%22%5D%7D&quality=insiders) [](https://vs-open.link/mcp-install?%7B%22fetch-url-mcp%22%3A%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40j0hanz%2Ffetch-url-mcp%40latest%22%5D%7D%7D)
|
|
6
6
|
|
|
7
|
-
[](https://lmstudio.ai/install-mcp?name=fetch-url&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBqMGhhbnovZmV0Y2gtdXJsLW1jcEBsYXRlc3QiXX0%3D) [](https://cursor.com/en/install-mcp?name=fetch-url&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBqMGhhbnovZmV0Y2gtdXJsLW1jcEBsYXRlc3QiXX0%3D)
|
|
7
|
+
[](https://lmstudio.ai/install-mcp?name=fetch-url&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBqMGhhbnovZmV0Y2gtdXJsLW1jcEBsYXRlc3QiXX0%3D) [](https://cursor.com/en/install-mcp?name=fetch-url&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBqMGhhbnovZmV0Y2gtdXJsLW1jcEBsYXRlc3QiXX0%3D)
|
|
8
8
|
|
|
9
9
|
An MCP server that fetches web pages and converts them to clean, readable Markdown.
|
|
10
10
|
|
|
@@ -156,8 +156,6 @@ For more info, see [Visual Studio MCP docs](https://learn.microsoft.com/en-us/vi
|
|
|
156
156
|
<details>
|
|
157
157
|
<summary><b>Install in Goose</b></summary>
|
|
158
158
|
|
|
159
|
-
[](https://block.github.io/goose/extension?cmd=npx&arg=-y&arg=%40j0hanz%2Ffetch-url-mcp%40latest&id=%40j0hanz%2Ffetch-url-mcp&name=fetch-url&description=A%20web%20content%20fetcher%20MCP%20server%20that%20converts%20HTML%20to%20clean%2C%20AI%20and%20human%20readable%20markdown.)
|
|
160
|
-
|
|
161
159
|
Add to `~/.config/goose/config.yaml` on macOS/Linux or `%APPDATA%\Block\goose\config\config.yaml` on Windows:
|
|
162
160
|
|
|
163
161
|
```yaml
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@j0hanz/fetch-url-mcp",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"mcpName": "io.github.j0hanz/fetch-url-mcp",
|
|
5
5
|
"description": "An MCP server that fetches web pages and converts them to clean, readable Markdown.",
|
|
6
6
|
"type": "module",
|
|
@@ -78,29 +78,29 @@
|
|
|
78
78
|
"prepublishOnly": "npm run lint && npm run type-check && npm run build"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
81
|
+
"@modelcontextprotocol/sdk": "^1.29",
|
|
82
82
|
"@mozilla/readability": "^0.6.0",
|
|
83
83
|
"linkedom": "^0.18.12",
|
|
84
84
|
"node-html-markdown": "^2.0.0",
|
|
85
|
-
"undici": "^7.24.
|
|
85
|
+
"undici": "^7.24.7",
|
|
86
86
|
"zod": "^4.3.6"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@eslint/js": "^10.0.1",
|
|
90
90
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
91
91
|
"@types/node": "^24",
|
|
92
|
-
"eslint": "^10.
|
|
92
|
+
"eslint": "^10.2.0",
|
|
93
93
|
"eslint-config-prettier": "^10.1.8",
|
|
94
94
|
"eslint-plugin-de-morgan": "^2.1.1",
|
|
95
95
|
"eslint-plugin-depend": "^1.5.0",
|
|
96
96
|
"eslint-plugin-sonarjs": "^4.0.2",
|
|
97
97
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
98
98
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
99
|
-
"knip": "^6.
|
|
99
|
+
"knip": "^6.3.0",
|
|
100
100
|
"prettier": "^3.8.1",
|
|
101
101
|
"tsx": "^4.21.0",
|
|
102
102
|
"typescript": "^6.0.2",
|
|
103
|
-
"typescript-eslint": "^8.
|
|
103
|
+
"typescript-eslint": "^8.58.0"
|
|
104
104
|
},
|
|
105
105
|
"engines": {
|
|
106
106
|
"node": ">=24"
|