Quick Configuration
Choose the setup that matches your environment.
Before You Start
- Confirm you have the account, endpoint, or API key required for Firecrawl.
- Start with minimum scopes and read-only access where possible.
- Keep secrets in environment variables instead of hardcoding them in JSON.
Hosted / Remote
JSON Hosted Config json
{
"firecrawl": {
"url": "https://YOUR_FIRECRAWL_MCP_ENDPOINT"
}
} Local CLI (npx)
JSON Local Config json
{
"firecrawl": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://YOUR_FIRECRAWL_MCP_ENDPOINT"],
"env": {
"FIRECRAWL_API_KEY": "YOUR_FIRECRAWL_API_KEY"
}
}
} Common Pitfalls & Fixes
- â ī¸ Watch out: Robots/anti-bot restrictions, pagination, and content chunking strategy.
- đ Always store API keys in environment variables, never hardcode them in JSON.
- đĄī¸ Start with read-only scopes if available to verify connection safely.
Example Prompts
Once connected, try these prompts to test capabilities:
- Crawl a docs site starting at a given URL and extract the main content as Markdown.
- Fetch a product pricing page and extract plan names, prices, and limits in a table.
- Given a blog URL, extract the headings outline and summarize each section.
Verification Checklist
- Run 1-2 real prompts to confirm Firecrawl returns usable data.
- Check that error messages are clear enough for troubleshooting.
- Document the required scopes, dependencies, and env vars for future reuse.