Home/Servers/Firecrawl MCP Server

Firecrawl MCP Server

by Mendable AI ยท โญ 1.9k stars ยท updated 1 weeks ago

Web scraping, crawling, and content extraction powered by Firecrawl. Crawl entire websites, extract structured data, perform web searches, and convert any URL to clean markdown.

89
Very Good

Quality Score Breakdown

maintenance91/100
community88/100
documentation89/100
compatibility88/100

Use Cases

  • โœ“scrape websites
  • โœ“extract structured data
  • โœ“web search
  • โœ“crawl multiple pages

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "firecrawl": {
      "command": "npx",
      "args": [
        "-y",
        "firecrawl-mcp"
      ],
      "env": {
        "FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "firecrawl": {
      "command": "npx",
      "args": [
        "-y",
        "firecrawl-mcp"
      ],
      "env": {
        "FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "firecrawl": {
        "command": "npx",
        "args": [
          "-y",
          "firecrawl-mcp"
        ],
        "env": {
          "FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
        }
      }
    }
  }
}
โ† Back to all servers