Home/Servers/Fetch MCP Server

Fetch MCP Server

by Anthropic ยท โญ 2.6k stars ยท updated 1 months ago

Web content fetching and conversion for efficient LLM usage. Fetch any URL, extract clean text, convert HTML to markdown, and retrieve web pages as structured content.

90
Excellent

Quality Score Breakdown

maintenance95/100
community87/100
documentation90/100
compatibility88/100

Use Cases

  • โœ“fetch web pages
  • โœ“extract content
  • โœ“convert HTML to markdown
  • โœ“web scraping

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "fetch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fetch"
      ]
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "fetch": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-fetch"
      ]
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "fetch": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-fetch"
        ]
      }
    }
  }
}
โ† Back to all servers