MCP Setup Guide

How to Set Up Fetch MCP with ClawdBot

Turn any URL into clean Markdown for rapid ingestion.

Overview

Quick Start

If your provider offers a hosted MCP endpoint, use a URL-based config:

Hosted MCP Config json
{
  "fetch": {
    "url": "https://YOUR_FETCH_MCP_ENDPOINT"
  }
}

For local or self-hosted servers, use a CLI bridge and keep secrets in environment variables:

Local CLI Config json
{
  "fetch": {
    "command": "npx",
    "args": ["-y", "mcp-remote", "https://YOUR_FETCH_MCP_ENDPOINT"],
    "env": {
      "FETCH_API_KEY": "YOUR_FETCH_API_KEY"
    }
  }
}

Common Pitfalls

Example Prompts

Related MCPs