Description

用于提供给本地开发者的 LLM的高效互联网搜索&内容获取的MCP Server, 节省你的token.

Installation

npx -y crawl4ai-mcp-server
npm install crawl4ai-mcp-server
git clone https://github.com/weidwonder/crawl4ai-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "crawl4ai-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "crawl4ai-mcp-server"
      ]
    }
  }
}