Firecrawl Agent MCP Server

Firecrawl Agent MCP Server

Enables AI-powered web data extraction and research through Firecrawl's Agent API. Autonomously searches, navigates, and scrapes websites to gather structured data without requiring specific URLs.

Category
Visit Server

README

Firecrawl Agent MCP Server

A Model Context Protocol (MCP) server that provides AI-powered web data extraction and research capabilities through Firecrawl's Agent API.

Features

šŸ¤– AI Agent Mode: Let the agent autonomously search, navigate, and gather data from complex websites šŸ” Web Search: Search and scrape multiple results at once šŸ“„ Single Page Scraping: Extract content from specific URLs šŸ“Š Structured Data: Define JSON schemas for type-safe data extraction šŸ’° Cost Control: Set maximum credit limits per request ⚔ Async Jobs: Start long-running tasks and poll for results

What is Firecrawl Agent?

Firecrawl Agent is a magic API that:

  • No URLs Required: Just describe what you need via prompt
  • Autonomous Navigation: Searches and navigates deep into sites to find your data
  • Parallel Processing: Processes multiple sources simultaneously for faster results
  • Structured Output: Returns data in your specified JSON schema format

Perfect for:

  • Research tasks across multiple websites
  • Extracting structured data (company info, pricing, contacts)
  • Finding hard-to-reach information
  • Competitive analysis and market research

Installation

1. Clone or Copy Files

cd firecrawl-agent-mcp

2. Install Dependencies

npm install

3. Configure API Key

Copy the example environment file and add your Firecrawl API key:

cp .env.example .env

Edit .env and add your API key:

FIRECRAWL_API_KEY=fc-YOUR_API_KEY_HERE

Get your API key from: https://www.firecrawl.dev/

4. Build the Server

npm run build

Configuration in Claude Code

Add the Firecrawl Agent MCP server to your Claude Code configuration:

Option 1: Edit .claude/settings.json

{
  "mcpServers": {
    "firecrawl-agent": {
      "command": "node",
      "args": ["/absolute/path/to/firecrawl-agent-mcp/dist/server.js"],
      "env": {
        "FIRECRAWL_API_KEY": "fc-YOUR_API_KEY_HERE"
      }
    }
  }
}

Option 2: Use .mcp.json in Project Root

{
  "mcpServers": {
    "firecrawl-agent": {
      "command": "node",
      "args": ["./firecrawl-agent-mcp/dist/server.js"],
      "env": {
        "FIRECRAWL_API_KEY": "fc-YOUR_API_KEY_HERE"
      }
    }
  }
}

Available Tools

agent_execute

Execute the AI agent synchronously (waits for completion).

Use when: You need immediate results for research tasks.

Parameters:

  • prompt (required): Describe what data you want to extract
  • urls (optional): Specific URLs to search (otherwise searches web)
  • schema (optional): JSON schema for structured output
  • maxCredits (optional): Maximum credits to spend

Example:

{
  "prompt": "Find the founders and founding year of Anthropic",
  "schema": {
    "type": "object",
    "properties": {
      "founders": { "type": "array", "items": { "type": "string" } },
      "founded": { "type": "number" }
    }
  }
}

agent_start

Start an agent job asynchronously (returns job ID immediately).

Use when: You have long-running research tasks and want to poll for results.

Parameters: Same as agent_execute

Returns: Job ID to use with agent_status

agent_status

Check the status of an asynchronous agent job.

Parameters:

  • jobId (required): Job ID from agent_start

Returns: Current status, progress, and results if completed

scrape

Scrape a single URL without AI agent capabilities.

Use when: You just need to extract content from one specific page.

Parameters:

  • url (required): URL to scrape
  • formats (optional): Output formats (markdown, html, rawHtml, links, screenshot)
  • onlyMainContent (optional): Extract only main content (default: true)
  • includeTags (optional): HTML tags to include
  • excludeTags (optional): HTML tags to exclude
  • waitFor (optional): Wait time for JS rendering (ms)
  • timeout (optional): Request timeout (ms)

search

Search the web and scrape multiple results.

Use when: You want to find and extract data from multiple sources at once.

Parameters:

  • query (required): Search query
  • limit (optional): Maximum number of results (default: 5)
  • formats (optional): Output formats for each result

Usage Examples

Example 1: Research Company Information

// Ask Claude Code:
"Use Firecrawl Agent to find information about Anthropic's founding team"

// Claude will call:
agent_execute({
  prompt: "Find the founders of Anthropic and when the company was founded",
  schema: {
    type: "object",
    properties: {
      founders: {
        type: "array",
        items: { type: "string" }
      },
      founded: { type: "number" },
      description: { type: "string" }
    }
  }
})

Example 2: Extract Pricing Information

// Ask Claude Code:
"Get pricing information for Claude API"

// Claude will call:
agent_execute({
  prompt: "Extract all pricing tiers and costs for Claude API",
  urls: ["https://www.anthropic.com/pricing"]
})

Example 3: Competitive Analysis

// Ask Claude Code:
"Compare the features of the top 5 AI coding assistants"

// Claude will call:
agent_execute({
  prompt: "Find and compare features of top AI coding assistants: GitHub Copilot, Cursor, Claude Code, Tabnine, and Codeium",
  schema: {
    type: "object",
    properties: {
      tools: {
        type: "array",
        items: {
          type: "object",
          properties: {
            name: { type: "string" },
            features: { type: "array", items: { type: "string" } },
            pricing: { type: "string" }
          }
        }
      }
    }
  }
})

Example 4: Long-Running Research

// Ask Claude Code:
"Start a deep research job on quantum computing breakthroughs in 2024"

// Claude will call:
const job = await agent_start({
  prompt: "Research all major quantum computing breakthroughs and papers published in 2024"
})

// Then poll for status:
const status = await agent_status({ jobId: job.jobId })

Cost Management

Firecrawl Agent uses dynamic billing based on task complexity:

  • Simple extractions: Fewer credits
  • Complex research: More credits

Control costs using:

{
  prompt: "Your task",
  maxCredits: 100  // Limit spending to 100 credits
}

Development

Watch Mode

npm run dev

Run Directly

npm start

SSE Transport Mode

For HTTP-based communication:

npm run start:sse

Troubleshooting

"FIRECRAWL_API_KEY environment variable is required"

Make sure you've:

  1. Created a .env file with your API key
  2. Or configured the env variable in your Claude Code settings

"HTTP 401: Unauthorized"

Your API key is invalid. Get a new one from https://www.firecrawl.dev/

"HTTP 429: Too Many Requests"

You've hit rate limits. Wait a moment and try again, or upgrade your Firecrawl plan.

Tools not showing up in Claude Code

  1. Make sure you've built the server: npm run build
  2. Check that the path in your MCP configuration is correct
  3. Restart Claude Code after configuration changes

Learn More

License

MIT

Support

For issues with:

  • This MCP server: Open an issue in this repository
  • Firecrawl API: Contact Firecrawl support
  • Claude Code: Visit https://github.com/anthropics/claude-code

Built with ā¤ļø using the Model Context Protocol

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured