firecrawl-pool-proxy
Multi-key proxy for Firecrawl API that rotates API keys on credit exhaustion and falls back to keyless free tier for search/scrape.
README
firecrawl-pool
Multi-key proxy for Firecrawl API. Pools multiple API keys, routes to the healthiest, retries on 402, falls back to free tier.
Why this exists
The firecrawl-mcp npm package takes one FIRECRAWL_API_KEY. When that key runs out of credits (HTTP 402), every search/scrape/crawl fails until next month.
If you have multiple Firecrawl accounts — maybe you signed up a few times to get separate free-tier quotas — this proxy sits in front of them and automatically tries the next key when one is exhausted.
Important: Firecrawl credits are per-account (team), not per-key. Two keys from the same account share the same credit pool. This proxy only helps when keys belong to different accounts with independent balances.
Install
# For pi coding agent
pi install npm:firecrawl-pool
# Or globally via npm
npm install -g firecrawl-pool
Quick Start
# 1. Run the setup wizard
firecrawl-pool init
# 2. Check your keys
firecrawl-pool status
# 3. Add to your MCP config (or use pi extension)
CLI
| Command | What it does |
|---|---|
firecrawl-pool init |
Interactive setup wizard |
firecrawl-pool status |
Show key balances and health |
firecrawl-pool validate |
Test that all keys work |
firecrawl-pool proxy |
Run the MCP proxy (default) |
Setup (Manual)
1. Create your keys file
cp firecrawl-keys.example.json ~/.config/firecrawl/keys.json
chmod 600 ~/.config/firecrawl/keys.json
Edit ~/.config/firecrawl/keys.json:
{
"version": 1,
"upstream": "https://api.firecrawl.dev",
"cooldown": { "baseMs": 900000, "maxMs": 21600000 },
"keys": [
{ "id": "personal", "apiKey": "fc-your-key-here", "enabled": true },
{ "id": "work", "apiKey": "fc-another-key", "enabled": true }
]
}
2. Point your MCP host at the proxy
Before (single key):
{
"mcpServers": {
"firecrawl": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": { "FIRECRAWL_API_KEY": "fc-your-key" }
}
}
}
After (pooled keys):
{
"mcpServers": {
"firecrawl": {
"command": "firecrawl-pool",
"env": { "FIRECRAWL_KEYS_FILE": "/path/to/keys.json" }
}
}
}
Or for pi coding agent — the extension handles this automatically.
Auto-discovery
The proxy looks for keys file in order:
FIRECRAWL_KEYS_FILEenv varfirecrawl-keys.jsonnext to the binary~/.config/firecrawl/keys.json~/.firecrawl-keys.json
How it works
MCP host → stdio → firecrawl-pool → api.firecrawl.dev
Single process, handles MCP protocol directly. Go binary (~5MB RAM) or Node.js fallback.
- Credit-aware routing: Probes each key's balance on startup, routes to the healthiest
- 402 auto-retry: When a key is exhausted, retries with the next one
- Keyless fallback: Search/scrape still work via Firecrawl's free tier when all keys die
- Cooldown with backoff: Blocked keys auto-recover after exponential cooldown
Config options
| Field | Default | What it does |
|---|---|---|
upstream |
https://api.firecrawl.dev |
Firecrawl API base URL. Change only if self-hosting. |
cooldown.baseMs |
900000 (15 min) |
Initial cooldown when a key gets a 402. |
cooldown.maxMs |
21600000 (6 hrs) |
Maximum cooldown (doubles each consecutive 402). |
keys[].id |
— | Label for logging. Pick something you recognize. |
keys[].apiKey |
— | Your fc-... API key. |
keys[].enabled |
true |
Set to false to temporarily skip a key without removing it. |
What happens when keys run out
For search, scrape, and interact: the proxy falls back to Firecrawl's keyless free tier (rate-limited, no API key needed). You'll get results, just slower.
For everything else (crawl, agent, map, extract): the proxy returns a 503.
Blocked keys automatically become available again after their cooldown expires. No restart needed.
License
MIT
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.