Community MCP server for Firecrawl web scraping API. Agents can scrape individual pages, crawl entire websites with configurable depth, extract structured data using LLM-powered extraction, and convert web content to clean Markdown. Superior to basic fetch for complex scraping tasks. Ideal for data collection, competitive intelligence, and content migration.
npx -y firecrawl-mcp
{
"mcpServers": {
"firecrawl": {
"env": {
"FIRECRAWL_API_KEY": "your-api-key"
},
"args": [
"-y",
"firecrawl-mcp"
],
"command": "npx"
}
}
}Crawl entire website
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
},
"max_pages": {
"type": "integer"
}
}
}// Input
{
"url": "https://docs.example.com",
"max_pages": 50
}// Output
{
"pages": [
{
"url": "https://docs.example.com/intro",
"title": "Introduction"
}
],
"total": 42
}Scrape webpage content
{
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string"
},
"formats": {
"type": "array",
"items": {
"type": "string"
}
}
}
}// Input
{
"url": "https://example.com",
"formats": [
"markdown"
]
}// Output
{
"markdown": "# Example\\nContent...",
"metadata": {
"title": "Example"
}
}Community MCP server for Firecrawl web scraping API. Agents can scrape individual pages, crawl entire websites with configurable depth, extract structured data using LLM-powered extraction, and convert web content to clean Markdown. Superior to basic fetch for complex scraping tasks. Ideal for data collection, competitive intelligence, and content migration.
Firecrawl provides 2 tools including crawl_site, scrape_url.
Firecrawl offers a free tier with 100 calls per month. For higher usage, paid plans start at €0/month.
You can install Firecrawl using the following command: npx -y firecrawl-mcp. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Firecrawl is listed under the Data & Analytics category in the AgentForge MCP registry.
Firecrawl has a current uptime of 99.82% with an average response time of 1200ms.
To connect Firecrawl, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Firecrawl's tools via the Model Context Protocol.