MCP servers / Fetch

Fetch MCP server: setup for Claude Code, Claude Desktop and Cursor

The Fetch server has one tool: it downloads a web page and returns it as readable text, converted to markdown. It is the simplest way to let your AI read a URL you give it.

Unlike Playwright it does not run a browser or click anything. It fetches the page and hands back the text.

Runs with
uvx (uv, for Python)
Package
mcp-server-fetch on PyPI
Needs
Python tooling: it runs through uvx, which comes with uv.
Tools
1 (not declared as read-only or not)
Source
modelcontextprotocol/servers
Last checked
2026-09-20 (server reported version 1.30.0)

Config for Fetch

Generated by the same code as the free builder, so it matches what you get there. Pick your client, then copy.

Needs uv installed (provides uvx). The maintainers warn it can reach local and internal network addresses, so be careful what it is pointed at.

Claude Code

Save as .mcp.json in your project root. Claude Code asks you to approve it the first time.

Claude Code config
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": [
        "mcp-server-fetch"
      ]
    }
  }
}

Or add it from a terminal instead (single quotes work in bash, zsh and PowerShell; more on this command):

Terminal command
claude mcp add fetch -- uvx mcp-server-fetch

Claude Desktop

Merge into claude_desktop_config.json (Settings → Developer → Edit Config), then fully quit and restart Claude Desktop.

Claude Desktop config
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": [
        "mcp-server-fetch"
      ]
    }
  }
}

Cursor

Save as .cursor/mcp.json in your project, or ~/.cursor/mcp.json for all projects.

Cursor config
{
  "mcpServers": {
    "fetch": {
      "command": "uvx",
      "args": [
        "mcp-server-fetch"
      ]
    }
  }
}

What it can do

These is the tool the server reported when we started it and asked on 2026-09-20. The labels come from the hints each tool declares about itself.

Watch out for

Try asking

Related servers

Building a full setup? Combine this with other servers in the config builder. Trouble connecting? See fixing connection errors.

Open the config builder Get early access to Pro