mcpservers.md

Fetch MCP

Official web fetch server — let AI retrieve content from any URL, including HTML to Markdown conversion for clean LLM consumption.

TRUSTED · Official
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": ["mcp-server-fetch"]
    }
  }
}

Paste into your client's MCP configuration file.

"Fetch https://example.com and tell me what the page is about"

Easy Setup

API key or simple config

Light usage
  • You want to read a web page or API response in conversation
  • The URL returns server-rendered HTML, JSON, or plain text
  • You need a lightweight, free option for single-page fetches
  • You're combining with other tools and just need the page content
  • The page needs JavaScript to render content — use puppeteer or browserbase
  • You're crawling many pages — use firecrawl for bulk
  • You need authenticated fetches with complex cookie flows — use a proper client
1

Single Page Reading

Fetch a URL and summarize or extract content.

"Fetch https://example.com/article and summarize the main points"

2

API Response Inspection

Hit a public API endpoint and inspect the response.

"Fetch https://api.github.com/repos/anthropic/anthropic-sdk-python and show me the star count and language"

3

Content Conversion

Grab a page and have AI convert it to another format.

"Fetch this blog post and convert it to a clean markdown file"

This server is the simplest possible way to let an AI read the web. You paste a link into the chat, the AI grabs the page, and now it can talk about what's on it. Ask Claude to summarize an article, pull the key points out of a documentation page, or look at a public API response — once Fetch is installed, those things just work. Under the hood it acts like a stripped-down browser that downloads the page and converts it to clean text the AI can read efficiently. There's no JavaScript engine and no rendering, so it's small, fast, and free. That's also the limit: pages that build themselves with JavaScript after loading (lots of modern web apps) come back nearly empty. For those you'd reach for a different tool. For most everyday tasks — reading a blog post, checking a docs page, glancing at a public JSON endpoint — Fetch is the right starting point. It's also the foundation for bigger workflows: combine it with other servers and your AI can research, extract, and summarize the open web by itself.

The official Fetch MCP server enables AI assistants to fetch and process web content. It handles HTML-to-Markdown conversion, follows redirects, and can extract specific content from pages.

A foundational building block for any AI workflow that needs to access web content, documentation, or APIs.

Claude Cursor Windsurf Cline Continue
#official#anthropic#web#http#fetch