Multi Fetch MCP Server
@alexyangjie
关于 Multi Fetch MCP Server
Extending mcp-server-fetch with parallel browsing
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"fetch": {
"command": "uvx",
"args": [
"mcp-server-multi-fetch"
],
"env": {
"FIRECRAWL_API_KEY": "",
"FIRECRAWL_API_URL": ""
}
}
}
}工具
3Fetches a URL from the internet and extracts its contents as markdown.
Fetches multiple URLs concurrently and returns an array of results. Input is an array of objects, each with:
Searches the web using the Firecrawl search API and scrapes results in markdown and link formats by default.
概览
What is Multi Fetch MCP Server?
Multi Fetch MCP Server is a fork of the Fetch MCP Server that replaces direct HTTP fetching with the Firecrawl Python SDK. It enables LLMs to fetch web content, scrape multiple URLs concurrently, and search the web, converting HTML to markdown for easier consumption.
How to use Multi Fetch MCP Server?
Install via pip install mcp-server-multi-fetch firecrawl-py and set the FIRECRAWL_API_KEY environment variable. Then configure Claude.app (or any MCP client) using uvx mcp-server-multi-fetch. Use the fetch, fetch_multi, and search tools to retrieve and process web content.
Key features of Multi Fetch MCP Server
- Based on the Fetch MCP Server, uses the Firecrawl SDK
- Fetch single or multiple URLs concurrently
- Web search via the Firecrawl search API
- Content truncation with
start_indexfor chunked reading - Customizable user-agent, proxy, and robots.txt behavior
- Prompts for fetch and search operations
Use cases of Multi Fetch MCP Server
- Reading large web pages in chunks to find specific information
- Concurrently fetching multiple sources for research or comparison
- Searching the web and scraping results into markdown
- Integrating web content into AI‑powered workflows
FAQ from Multi Fetch MCP Server
What is the difference from the original Fetch MCP Server?
This fork replaces direct HTTP fetching with the Firecrawl Python SDK, requiring a Firecrawl API key (FIRECRAWL_API_KEY) instead of using plain HTTP requests.
What dependencies are required?
Requires Python with the mcp-server-multi-fetch and firecrawl-py packages. Optionally, Node.js can be installed for a more robust HTML simplification step.
How do I set up the Firecrawl API key?
Set the FIRECRAWL_API_KEY environment variable to your Firecrawl API key. Optionally, override the API endpoint with FIRECRAWL_API_URL.
Can I configure a proxy?
Yes, use the --proxy-url argument with HTTP, HTTPS, or SOCKS5 proxy URLs (e.g., --proxy-url http://192.168.1.1:8080).
How does robots.txt handling work?
By default, the server obeys a website’s robots.txt for model‑initiated requests (tools) but not for user‑initiated requests (prompts). This can be disabled with the --ignore-robots-txt flag.
浏览器自动化 分类下的更多 MCP 服务器
Playwright Mcp
microsoftPlaywright MCP server
Fetcher MCP
jae-jaeMCP server for fetch web page content using Playwright headless browser.
App Store Scraper MCP Server
appreply-coThis is an MCP server that provides tools to LLMs for searching and analyzing apps from both Google Play Store and Apple App Store – perfect for ASO.
Webpage Screenshot MCP Server
ananddtyagiAn MCP that gives your agent the ability to snap a screenshot of webpages. Useful when you want your agent to check its progress during development.
评论