Intelligent web content fetcher MCP server that converts HTML to clean, AI-readable JSONL format
Superfetch MCP server exists for a simple reason — assistants are far more useful when they can act on Superfetch directly instead of describing what you should do. Intelligent web content fetcher MCP server that converts HTML to clean, AI-readable JSONL format.
An MCP server that fetches web pages and converts them to clean, readable Markdown.
This server takes a URL, fetches the page, and strips away everything you don't need — navigation, sidebars, banners, scripts — leaving just the main content as Markdown. It's perfect for feeding into LLMs, giving them the distilled essence of a page without the noise. It also recognizes GitHub, GitLab, Bitbucket, and Gist URLs and rewrites them to fetch the raw content directly.
Installation goes through your MCP client rather than a global install: point it at args on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Once Superfetch is connected, these are the calls the assistant has available:
Tools — The Tools tool exposed by this serverResources — The Resources tool exposed by this serverPrompts — The Prompts tool exposed by this serverYou will need 8 environment variables: OAUTH_ISSUER_URL, OAUTH_AUTHORIZATION_URL, OAUTH_TOKEN_URL, OAUTH_REVOCATION_URL, OAUTH_REGISTRATION_URL, OAUTH_INTROSPECTION_URL, OAUTH_CLIENT_ID, OAUTH_CLIENT_SECRET. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Superfetch's toolset — Tools, Resources, Prompts — is a fair guide to whether it matches your workflow. It is maintained by j0hanz; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| Tools | The Tools tool exposed by this server. |
| Resources | The Resources tool exposed by this server. |
| Prompts | The Prompts tool exposed by this server. |
{
"mcpServers": {
"fetch-url-mcp": {
"command": "npx",
"args": ["-y", "@j0hanz/fetch-url-mcp@latest"]
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| OAUTH_ISSUER_URL | Endpoint or connection string the server talks to. | Yes |
| OAUTH_AUTHORIZATION_URL | Endpoint or connection string the server talks to. | Yes |
| OAUTH_TOKEN_URL | Credential the server authenticates with. | Yes |
| OAUTH_REVOCATION_URL | Endpoint or connection string the server talks to. | Yes |
| OAUTH_REGISTRATION_URL | Endpoint or connection string the server talks to. | Yes |
| OAUTH_INTROSPECTION_URL | Endpoint or connection string the server talks to. | Yes |
| OAUTH_CLIENT_ID | Configuration value read at startup. | Optional |
| OAUTH_CLIENT_SECRET | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.