mult-fetch-mcp-server
A versatile MCP-compliant web content fetching tool that supports multiple modes (browser/node), formats (HTML/JSON/Markdown/Text), and intelligent proxy detection, with bilingual interface (English/Chinese).
Overview
Mult Fetch Mcp Server is a versatile MCP-compliant web content fetching tool that supports multiple modes (browser/node), formats (HTML/JSON/Markdown/Text), and intelligent proxy detection, with a bilingual interface (English/Chinese).
To use the server, install it via npm or Smithery, configure it according to your environment, and then run it to fetch web content using various commands.
- Supports multiple fetching modes: browser and Node.js. - Fetches content in various formats: HTML, JSON, Markdown, and plain text. - Intelligent proxy detection and bilingual support. - Modular design for easy maintenance and extension.
- Web scraping for data extraction.
- Fetching content for AI assistants.
- Integrating with applications that require web content.
Add to your AI client
Use these steps to connect mult-fetch-mcp-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mult-fetch-mcp-server-lmcc-dev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mult-fetch-mcp-server-lmcc-dev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mult-fetch-mcp-server-lmcc-dev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mult-fetch-mcp-server-lmcc-dev": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mult-fetch-mcp-server-lmcc-dev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mult-fetch-mcp-server-lmcc-dev": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mult-fetch-mcp-server-lmcc-dev"
]
}
}
}FAQ
Can I use it without installation?
Yes! You can run it directly using npx without installation.
Is it available in multiple languages?
Yes! It supports both English and Chinese.
How do I configure proxy settings?
You can specify proxy settings in the request parameters or use environment variables.