Md Webcrawl MCP Server

Extracts website content and saves it as markdown files, mapping website structure and links.

Local serverstdioPython 4

What is the Md Webcrawl MCP server?

Extracts website content and saves it as markdown files, mapping website structure and links. Exposed over MCP by the md webcrawl mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

A Python-based MCP (https://modelcontextprotocol.io/introduction) web crawler for extracting and saving website content.

  • Extract website content and save as markdown files
  • Map website structure and links
  • Batch processing of multiple URLs
  • Configurable output directory

Its toolset

Everything the assistant can do here goes through one of these:

  • OUTPUT_PATH — Default output directory for saved files
  • MAX_CONCURRENT_REQUESTS — Maximum parallel requests (default: 5)
  • REQUEST_TIMEOUT — Request timeout in seconds (default: 30)
  • Debug — It helps to use https://modelcontextprotocol.io/docs/tools/inspector for debugging

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at fastmcp on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

Configuration

You will need one environment variable: OUTPUT_PATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.7+ - FastMCP (uv pip install fastmcp) - Dependencies listed in requirements.txt

When to reach for it

Among the file and storage access 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. Md Webcrawl's toolset — OUTPUT_PATH, MAX_CONCURRENT_REQUESTS, REQUEST_TIMEOUT and 1 more — is a fair guide to whether it matches your workflow. It is maintained by jmh108; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Md Webcrawl's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the md webcrawl mcp server does with a few real requests.

Available tools

ToolWhat it does
OUTPUT_PATHDefault output directory for saved files
MAX_CONCURRENT_REQUESTSMaximum parallel requests (default: 5)
REQUEST_TIMEOUTRequest timeout in seconds (default: 30)
DebugIt helps to use https://modelcontextprotocol.io/docs/tools/inspector for debugging

How to install the Md Webcrawl MCP server

{
  "mcpServers": {
    "md-webcrawl": {
      "command": "uvx",
      "args": ["fastmcp"],
      "env": {
        "OUTPUT_PATH": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Python 3.7+ - FastMCP (uv pip install fastmcp) - Dependencies listed in requirements.txt
VariableDescriptionRequired
OUTPUT_PATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Md Webcrawl to OUTPUT PATH.
  • Use Md Webcrawl to MAX CONCURRENT REQUESTS.
  • Use Md Webcrawl to REQUEST TIMEOUT.

Frequently asked questions

Md Webcrawl is a Python-based tool designed to extract website content and save it as Markdown files. It also maps website structure and links for easy navigation and archiving.