F

Fetch

Community

A server that flexibly fetches HTML, JSON, Markdown, or plaintext.

Community Server

This server is maintained by the community. Please review the source code before connecting it to your agent.

A server that flexibly fetches HTML, JSON, Markdown, or plaintext. This server enables AI agents to interact with Fetch to perform various tasks and retrieve information.

From Official RepositoryMIT
Synced: Jan 24, 2026

MCP Configuration

json
"mcpServers": {
    "fetch": {
      "command": "npx",
      "args": [
        "mcp-fetch-server"
      ], 
      "env": {
        "DEFAULT_LIMIT": "50000" // optionally change default limit
      }

Available Tools

4 tools
fetch_htmlFetch a website and return the content as HTML
fetch_jsonFetch a JSON file from a URL
fetch_txtFetch a website and return the content as plain text (no HTM...
fetch_markdownFetch a website and return the content as Markdown

Setup Guide

Please refer to the official repository for installation instructions.

How to Connect in Antigravity

To connect to a custom MCP server in Antigravity:

1
Open the MCP store via the "..." dropdown at the top of the editor's agent panel.
2
Click on "Manage MCP Servers"
3
Click on "View raw config"
4
Modify the mcp_config.json with your custom MCP server configuration.

Here is an example configuration compatible with MCP-enabled editors like Antigravity, Windsurf, Claude Desktop, and Cursor:

{
  "mcpServers": {
    "supabase-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@supabase/mcp-server-supabase@latest",
        "--access-token",
        "add-token-here"
      ],
      "env": {}
    },
    "github-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "ghcr.io/github/github-mcp-server"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "add-your-token-here"
      }
    }
  }
}

This configuration defines two servers: one running via npx (Supabase) and another via docker (GitHub). Make sure to replace the placeholder tokens with your actual API keys.

For a detailed step-by-step walkthrough, check out our MCP Tutorial or explore more in our Top 10 Essential MCP Servers guide.

How to Connect in Cursor

To add this MCP server to Cursor:

1
Open Cursor Settings (File > Preferences > Cursor Settings).
2
Navigate to Features > MCP Servers.
3
Click on "Add new MCP server".
4
Enter the Name, Command, and Arguments as specified in the configuration above.

For more details, refer to the official Cursor MCP documentation.

Related Servers