Skip to main content

A high-performance, asynchronous MCP server for Firecrawl Search, featuring connection pooling, request retries, and intelligent input parsing.

Project description

Firecrawl MCP Toolkit

A high-performance, asynchronous MCP server that provides comprehensive Google search and web content scraping capabilities through the Firecrawl API (excluding some rarely used interfaces).

This project is built on httpx, utilizing asynchronous clients and connection pool management to offer LLMs a stable and efficient external information retrieval tool.

PyPI Package

firecrawl-toolkit: https://pypi.org/project/firecrawl-toolkit/

Key Features

  • Asynchronous Architecture: Fully based on asyncio and httpx, ensuring high throughput and non-blocking I/O operations.
  • HTTP Connection Pool: Manages and reuses TCP connections through a global httpx.AsyncClient instance, significantly improving performance under high concurrency.
  • Concurrency Control: Built-in global and per-API endpoint concurrency semaphores effectively manage API request rates to prevent exceeding rate limits.
  • Automatic Retry Mechanism: Integrated request retry functionality with exponential backoff strategy automatically handles temporary network fluctuations or server errors, enhancing service stability.
  • Intelligent Country Code Parsing: Includes a comprehensive country name dictionary supporting inputs in Chinese, English, ISO Alpha-2/3, and other formats, with automatic normalization.
  • Response Field Mapping: Search/Scrape responses are normalized into minimal, client-facing JSON schemas instead of upstream passthrough payloads.
  • Noise Reduction for Scrape: Built-in excludeTags selector filtering removes common non-content blocks (navigation, ads, sidebars, comments, etc.) to improve signal quality.
  • Flexible Environment Variable Configuration: Supports fine-tuned service configuration via environment variables.
  • The Search and Scrape Endpoints perform some request pre-processing and post-processing, which can save quite a few tokens.

Available Tools

This service provides the following tools:

Tool Name Description
firecrawl-aggregated-search Aggregated Search Interface, Combining Webpage, News, And Image Search Results.  
firecrawl-web-search Web Search Interface.
firecrawl-news-search News Search Interface.
firecrawl-image-search Image Search Interface.
firecrawl-scrape Scrapes and returns the content of a specified URL.

Installation Guide

It is recommended to install using pip or uv.

# Using pip
pip install firecrawl-toolkit

# Or using uv
uv pip install firecrawl-toolkit

Quick Start

Set Environment Variables

Create a .env file in the project root directory and enter your Firecrawl API key:

Environment Variables Default value Description
FIRECRAWL_API_KEY fc-xxx your-firecrawl-api-key-here
FIRECRAWL_HTTP2 0 Disable or enable HTTP2, <0/1>
FIRECRAWL_MAX_WORKERS 10 Number of processes
FIRECRAWL_MAX_CONNECTIONS 200 Maximum number of connections
FIRECRAWL_MAX_CONCURRENT_REQUESTS 200 Maximum number of concurrent requests
FIRECRAWL_KEEPALIVE 20 Maximum number of concurrent connections
FIRECRAWL_RETRY_COUNT 3 Maximum number of retries
FIRECRAWL_RETRY_BASE_DELAY 0.5 Base delay time for retries in seconds
FIRECRAWL_ENDPOINT_CONCURRENCY {"search":10,"scrape":2} Set concurrency per endpoint (JSON format)
FIRECRAWL_ENDPOINT_RETRYABLE {"scrape": false} Set retry allowance per endpoint (JSON format)
FIRECRAWL_MCP_ENABLE_STDIO 0 Disable or enable STDIO, <0/1>
FIRECRAWL_MCP_ENABLE_HTTP 0 Disable or enable HTTP, <0/1>
FIRECRAWL_MCP_ENABLE_SSE 0 Disable or enable SSE, <0/1>
FIRECRAWL_MCP_HTTP_HOST 127.0.0.1 HTTP host address
FIRECRAWL_MCP_HTTP_PORT 7001 HTTP host port
FIRECRAWL_MCP_SSE_HOST 127.0.0.1 SSE host address
FIRECRAWL_MCP_SSE_PORT 7001 SSE host port
FIRECRAWL_MCP_LOCK_FILE /tmp/firecrawl_mcp.lock Lock file path
  • STDIO, HTTP, and SSE can only be used one at a time. If you need to use multiple protocols, please start separate services for each.
  • When using multiple services, please specify different lock files for each.

Configure MCP Client

Add the following server configuration in the MCP client configuration file:

{
  "mcpServers": {
    "firecrawl": {
      "command": "python3",
      "args": ["-m", "firecrawl-toolkit"],
      "env": {
        "FIRECRAWL_API_KEY": "<Your Firecrawl API key>"
      }
    }
  }
}
{
  "mcpServers": {
    "firecrawl": {
      "command": "uvx",
      "args": ["firecrawl-toolkit"],
      "env": {
        "FIRECRAWL_API_KEY": "<Your Firecrawl API key>"
      }
    }
  }
}

Tool Parameters and Usage Examples

firecrawl-search: Perform web / news / images search

Parameters:

  • query (str, required): Keywords to search.
  • country (str, optional): Specify the country/region for search results. Supports Chinese names (e.g., "China"), English names (e.g., "United States"), or ISO codes (e.g., "US"). Default is "US".
  • search_num (int, optional): Number of results to return, range 1-100. Default is 20.
  • search_time (str, optional): Filter results by time range. Available values: "hour", "day", "week", "month", "year".

Example:

result_json = firecrawl_search(
    query="AI advancements 2024",
    country="United States",
    search_num=5,
    search_time="month"
)

Response (mapped):

  • Top-level fields: success, data, creditsUsed
  • data.web[]: title, description, url
  • data.news[]: title, snippet, url, date
  • data.images[]: title, imageUrl, url
  • web / news / images remain arrays and may be empty ([])
  • Missing mapped fields are preserved as null
  • Output is compact single-line JSON (no extra spaces)

Example response:

{"success":true,"data":{"web":[{"title":"Example Web","description":"Example description","url":"https://example.com"}],"news":[],"images":[{"title":"Example Image","imageUrl":"https://img.example.com/1.jpg","url":"https://example.com/image"}]},"creditsUsed":3}

firecrawl-scrape: Scrape webpage content

Parameters:

  • url (str, required): URL of the target webpage.
  • excludeTags (list[str], optional, default []): Additional CSS selectors to exclude; merged with built-in noise-filter selectors after normalization and deduplication.

Example:

result_json = firecrawl_scrape(
    url="https://www.example.com",
    excludeTags=["[class^=\"skip\"]", "[id*=\"disqus\"]"]
)

Built-in noise filtering:

  • The tool uses an internal excludeTags selector set to suppress noisy DOM regions and prioritize main content quality.
  • If the first scrape returns data.markdown == "", the tool automatically retries once without includeTags/excludeTags as a fallback.

Response (mapped):

  • Top-level fields: success, proxyUsed, title, description, language, markdown, creditsUsed
  • markdown is URL-decoded before returning to the client
  • Missing mapped fields are preserved as null
  • Output is compact single-line JSON (no extra spaces)

Example response:

{"success":true,"proxyUsed":"auto","title":"Example Page","description":"Example summary","language":"en","markdown":"Hello world!","creditsUsed":1}

Response Contract Notes

  • firecrawl-search and firecrawl-scrape success payloads are mapped to stable minimal schemas.
  • Missing mapped fields are preserved as null (arrays remain arrays, and may be empty).
  • Both success and error responses are compact single-line JSON.
  • This is a breaking response-contract change for consumers that relied on the old full passthrough structure (query_details + results).

License Agreement

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

firecrawl_toolkit-0.0.17.tar.gz (30.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

firecrawl_toolkit-0.0.17-py3-none-any.whl (24.7 kB view details)

Uploaded Python 3

File details

Details for the file firecrawl_toolkit-0.0.17.tar.gz.

File metadata

  • Download URL: firecrawl_toolkit-0.0.17.tar.gz
  • Upload date:
  • Size: 30.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for firecrawl_toolkit-0.0.17.tar.gz
Algorithm Hash digest
SHA256 81356f6f997d33b3da98588f14adae51929ab35cc176d48a9df40011cda754cb
MD5 acea2fb5fd33181ea213d089fa778271
BLAKE2b-256 224e0545d566ccb53dd3bdccb23f1caa9553523739df97ed12b4858ffe92b521

See more details on using hashes here.

Provenance

The following attestation bundles were made for firecrawl_toolkit-0.0.17.tar.gz:

Publisher: publish-pypi.yml on Joey-Kot/firecrawl-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file firecrawl_toolkit-0.0.17-py3-none-any.whl.

File metadata

File hashes

Hashes for firecrawl_toolkit-0.0.17-py3-none-any.whl
Algorithm Hash digest
SHA256 117f7960e69ddaf23f7cbfe8c089853ad47c260859779dddee97adab8c06269f
MD5 22a4fb21d47d8b2e99b5f57fc3947249
BLAKE2b-256 73bc92967678dba89b7c331f016b8c8a618429852189df86bc98c30a13451bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for firecrawl_toolkit-0.0.17-py3-none-any.whl:

Publisher: publish-pypi.yml on Joey-Kot/firecrawl-toolkit

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page