MCP Hub
Back to servers

ZapFetch MCP Server

An APAC-native web scraping API for AI agents that provides tools for scraping, crawling, searching, and extracting structured data from websites, directly usable from MCP-compatible clients like Claude Desktop, Cursor, and Windsurf.

glama
Updated
Apr 24, 2026

@zapfetch/mcp-server

MCP (Model Context Protocol) server for ZapFetch — APAC-native web scraping API for AI agents.

Use ZapFetch directly from Claude Desktop, Cursor, Windsurf, and any other MCP-compatible client.

Tools

  • zapfetch_scrape — scrape a single URL
  • zapfetch_search — web search with optional content extraction
  • zapfetch_crawl — crawl a website (async, returns job_id)
  • zapfetch_crawl_status — poll crawl job progress
  • zapfetch_map — discover URLs on a site (fast, no content)
  • zapfetch_extract — extract structured data with a prompt + schema
  • zapfetch_extract_status — poll extract job progress

Docs: https://docs.zapfetch.com

For docs lookups, Claude/Cursor/Windsurf can also use the auto-generated Mintlify MCP at https://docs.zapfetch.com/mcp.

Prerequisites

Install

npm install -g @zapfetch/mcp-server

Configure

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "zapfetch": {
      "command": "npx",
      "args": ["-y", "@zapfetch/mcp-server"],
      "env": {
        "ZAPFETCH_API_KEY": "zf-your-api-key"
      }
    }
  }
}

Cursor

Edit ~/.cursor/mcp.json:

{
  "mcpServers": {
    "zapfetch": {
      "command": "npx",
      "args": ["-y", "@zapfetch/mcp-server"],
      "env": { "ZAPFETCH_API_KEY": "zf-your-api-key" }
    }
  }
}

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "zapfetch": {
      "command": "npx",
      "args": ["-y", "@zapfetch/mcp-server"],
      "env": { "ZAPFETCH_API_KEY": "zf-your-api-key" }
    }
  }
}

Environment Variables

VariableRequiredDefaultDescription
ZAPFETCH_API_KEYyesYour ZapFetch API key
ZAPFETCH_API_URLnohttps://api.zapfetch.comOverride for self-host / dev

Usage Examples

After configuration, just ask your AI assistant:

  • "Scrape the top 3 posts from news.ycombinator.com/newest"
  • "Find me the latest TypeScript release notes on github.com"
  • "Crawl docs.example.com and summarize the authentication section"
  • "Extract product name, price, and stock from these 5 rakuten.co.jp URLs as JSON"

Migrating from Firecrawl MCP

ZapFetch is Firecrawl-compatible at the API level, but this MCP uses zapfetch_* tool names (not firecrawl_*) to avoid conflicts if you run both. Capabilities are 1:1 — just update prompts referring to tool names.

Development

pnpm install        # or npm install
npm run typecheck
npm run build       # -> dist/

Local test with Claude Desktop pointed at your build:

{
  "mcpServers": {
    "zapfetch-dev": {
      "command": "node",
      "args": ["/absolute/path/to/zapfetch-mcp/dist/index.js"],
      "env": { "ZAPFETCH_API_KEY": "zf-..." }
    }
  }
}

License

MIT

Reviews

No reviews yet

Sign in to write a review