Files
crewAI/crewai_tools/tools/firecrawl_search_tool
Greyson Lalonde e16606672a Squashed 'packages/tools/' content from commit 78317b9c
git-subtree-dir: packages/tools
git-subtree-split: 78317b9c127f18bd040c1d77e3c0840cdc9a5b38
2025-09-12 21:58:02 -04:00
..

FirecrawlSearchTool

Description

Firecrawl is a platform for crawling and convert any website into clean markdown or structured data.

Installation

  • Get an API key from firecrawl.dev and set it in environment variables (FIRECRAWL_API_KEY).
  • Install the Firecrawl SDK along with crewai[tools] package:
pip install firecrawl-py 'crewai[tools]'

Example

Utilize the FirecrawlSearchTool as follows to allow your agent to load websites:

from crewai_tools import FirecrawlSearchTool

tool = FirecrawlSearchTool(config={"limit": 5})
tool.run(query="firecrawl web scraping")

Arguments

  • api_key: Optional. Specifies Firecrawl API key. Defaults is the FIRECRAWL_API_KEY environment variable.
  • config: Optional. It contains Firecrawl API parameters.

This is the default configuration

{
    "limit": 5,
    "tbs": None,
    "lang": "en",
    "country": "us",
    "location": None,
    "timeout": 60000,
}