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"
}
}
}
}
}