DEV Community

curatedmcp for CuratedMCP

Posted on • Originally published at curatedmcp.com

Fetch MCP Server: Turn Any URL Into Clean Markdown for Your AI Agent

Install guide and config at curatedmcp.com

Fetch MCP Server: Turn Any URL Into Clean Markdown for Your AI Agent

Your Claude instance can now read the web. The Fetch MCP Server is the lightest, most practical way to give AI agents access to HTTP/HTTPS content—without the overhead of headless browsers or complex orchestration.

What It Does

Fetch MCP does one thing well: it fetches a URL and returns the content as clean, AI-readable markdown. No bloat. No unnecessary dependencies. Your Claude instance makes a request, the server strips away HTML cruft, preserves links and code blocks, and hands back structured markdown that LLMs actually understand.

The server respects robots.txt, supports configurable user agents, and includes an optional Playwright backend for JavaScript-heavy pages—but defaults to simple HTTP fetching that's fast and reliable. Need raw HTML instead? You can get that too. It's built for read-only use cases, which covers 90% of real-world scenarios: pulling documentation, ingesting articles, following search results, or scanning public APIs.

This unlocks a critical capability: your AI can now reason about current information. No more stale training data. No hallucinated documentation links. Real content, real-time.

How to Install

Install via Python's uv package manager (requires Python 3.10+):

uvx mcp-server-fetch
Enter fullscreen mode Exit fullscreen mode

Then add it to your Claude Desktop config:

{
  "mcpServers": {
    "fetch-mcp-server": {
      "command": "uvx mcp-server-fetch"
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Restart Claude Desktop. You're done.

Real-World Use Cases

  • Live documentation lookup: Paste a GitHub README URL or API docs link into Claude. It fetches and parses the markdown in one shot—no copying/pasting massive text blocks.
  • Research and fact-checking: Point Claude at a blog post, news article, or technical deep-dive. It reads the full content, extracts key points, and answers questions based on the actual text.
  • Quick dependency inspection: Fetch package manager pages, changelogs, or security advisories. Claude can analyze version histories, breaking changes, or vulnerability details without you hunting through web browsers.

Full install guides for Claude Desktop, Cursor, Windsurf, and more at CuratedMCP.

Top comments (0)