MCP Read Website Fast MCP Server

Markdown Content Preprocessor - Fetch web pages, extract content, convert to clean Markdown

Local serverstdio

What is the MCP Read Website Fast MCP server?

MCP Read Website Fast becomes available to MCP clients through the mcp read website fast mcp server. Markdown Content Preprocessor - Fetch web pages, extract content, convert to clean Markdown.

What MCP Read Website Fast does

Fast, token-efficient web content extraction for AI agents - converts websites to clean Markdown.

Existing MCP web crawlers are slow and consume large quantities of tokens. This pauses the development process and provides incomplete results as LLMs need to parse whole web pages.

Key capabilities

  • Fast startup — using official MCP SDK with lazy loading for optimal performance
  • Content extraction — using Mozilla Readability (same as Firefox Reader View)
  • HTML to Markdown — conversion with Turndown + GFM support
  • Smart caching — with SHA-256 hashed URLs
  • Polite crawling — with robots.txt support and rate limiting
  • Concurrent fetching — with configurable depth crawling
  • Stream-first design — for low memory usage
  • Link preservation — for knowledge graphs

Tools it exposes

Once connected, the assistant can call these 3 tools directly:

  • read_website — Fetches a webpage and converts it to clean markdown
  • Parameters — - url (required): The HTTP/HTTPS URL to fetch
  • Cursor — The Cursor tool exposed by this server

Installing the mcp read website fast mcp server

The server is distributed via npm as @just-every/mcp-read-website-fast, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Where it fits

Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. MCP Read Website Fast sits in that group, and the shape of its toolset — read_website, Parameters, Cursor — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by just-every.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the mcp read website fast mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
read_websiteFetches a webpage and converts it to clean markdown
Parameters- url (required): The HTTP/HTTPS URL to fetch
CursorThe Cursor tool exposed by this server.

How to install the MCP Read Website Fast MCP server

{
  "mcpServers": {
    "read-website-fast": {
      "command": "npx",
      "args": ["-y", "@just-every/mcp-read-website-fast"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use MCP Read Website Fast to read website.
  • Use MCP Read Website Fast to Parameters.
  • Use MCP Read Website Fast to Cursor.

Frequently asked questions

It connects MCP Read Website Fast to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (read_website, Parameters, Cursor) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Read Website Fast directly.