Skip to main content
Integration Pages

Integrations

Wire fastCRW into the agent frameworks, automation platforms, and editors your team already uses. Every page ships a working code snippet and a Firecrawl-compatible API path so migration stays a one-line change.

Integration Pages

Migrate from Tavily to fastCRW — Search API Migration Guide

Migrate from Tavily search API to fastCRW POST /v1/search. fastCRW search averaged 880 ms across a 100-query benchmark, and adds scrape, crawl, and map. Param mapping table, before/after code, and honest gaps (answer mode: managed on paid plans or bring-your-own-key; no domain filters).

migrate from tavilyMap Tavily /search params onto fastCRW POST /v1/search — mostly renames
Integration Pages

Cursor Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW as an MCP server in Cursor IDE. Configure ~/.cursor/mcp.json, then scrape, search, crawl, and map web pages from within your agent prompts. A single static Rust binary, local-first.

cursor web scrapingRegister fastCRW MCP server in ~/.cursor/mcp.json
Integration Pages

Claude Code Web Scraping Integration — fastCRW [MCP Server]

Add fastCRW as a Claude Code MCP server. One npx command registers scrape, search, crawl, map, and crawl-status tools. A single static Rust binary, local-first, self-host free under AGPL-3.0.

claude code web scrapingOne-command MCP server registration with crw-mcp
Integration Pages

Migrate from Firecrawl to fastCRW in 10 Minutes — Drop-In Guide

Migrate from Firecrawl to fastCRW with a base-URL swap. fastCRW exposes a Firecrawl-compatible REST API on /scrape, /crawl, /map, /search — keep the firecrawl-py SDK, point it at fastcrw.com, done. Endpoint mapping table + honest divergences.

migrate from firecrawlKeep the firecrawl-py SDK — point FirecrawlApp at https://api.fastcrw.com and most code is unchanged
Integration Pages

CrewAI Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Give every CrewAI agent a fastCRW scrape and search tool — via the official crewai-crw package or a hand-rolled BaseTool subclass. A single static Rust binary, local-first, Firecrawl-compatible for low-friction migration.

crewai web scrapingOfficial crewai-crw package on PyPI — ready-made fastCRW tools for crews
Integration Pages

Migrate from Jina Reader to fastCRW — URL-to-Markdown Upgrade Guide

Migrate from Jina Reader (r.jina.ai URL-prefix) to fastCRW POST /v1/scrape. Same clean markdown plus crawl, map, search, LLM extraction, JS rendering, and AGPL-3.0 self-hosting on a single Rust binary. Before/after code + endpoint mapping.

migrate from jina readerSwap the r.jina.ai/<url> GET for a POST /v1/scrape with formats: ["markdown"]
Integration Pages

LangChain Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Wire LangChain document loaders, retrievers, and agent tools into fastCRW with the official langchain-crw package — or a Firecrawl-compatible api_url override. A single static Rust binary, local-first, self-host free under AGPL-3.0.

langchain web scrapingOfficial langchain-crw package on PyPI — fastCRW-native loaders and tools
Integration Pages

Vercel AI SDK Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Register fastCRW as a tool in Vercel AI SDK so generateText and streamText can scrape live web pages. Drop-in alternative to Firecrawl: small single static binary, local-first, self-host free under AGPL-3.0.

vercel ai sdk web scrapingRegister fastCRW scrape/crawl/search as native Vercel AI SDK tools via tool() helper
Integration Pages

Flowise Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW to Flowise workflows with an HTTP node or custom tool definition. No-code web scraping for LangChain flows, RAG pipelines, and AI agents. Small single static binary, local-first, self-host free under AGPL-3.0.

flowise web scrapingDrop fastCRW into any Flowise flow with the built-in HTTP node
Integration Pages

Pydantic AI Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Register fastCRW scrape, crawl, and search as Pydantic AI agent tools via the @agent.tool decorator. Typed Python agents fetch live web pages and reason in a single loop. Small single static binary, local-first, self-host free under AGPL-3.0.

pydantic ai web scrapingRegister fastCRW as Pydantic AI tools using @agent.tool decorator
Integration Pages

LlamaIndex Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Build a custom LlamaIndex web reader that calls fastCRW for live ingestion, or wrap fastCRW scrape/crawl in a LlamaIndex tool for agent workflows. Markdown output feeds directly into embeddings pipelines. Small single static binary, local-first, self-host free under AGPL-3.0.

llamaindex web scrapingCustom SimpleWebPageReader-style LlamaIndex reader wrapping fastCRW REST API
Integration Pages

Dify Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Integrate fastCRW into Dify workflows via HTTP node or native plugin. Call scrape and search endpoints from Dify LLM apps, knowledge bases, and agents. Small single static binary, local-first, self-host free under AGPL-3.0.

dify web scrapingOfficial crw-dify-plugin for one-click native setup
Integration Pages

Cline Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW as an MCP server to Cline, the VS Code AI agent extension. Configure .vscode/settings.json or user settings, then scrape, search, crawl, and extract web pages from Cline tasks. Small single static binary, local-first.

cline web scrapingAdd fastCRW MCP server to Cline via VS Code settings.json
Integration Pages

Windsurf Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Integrate fastCRW as an MCP server in Windsurf (Codeium's AI IDE). Configure ~/.windsurf/mcp.json, then scrape, search, crawl, and extract web data from coding sessions. Small single static binary, local-first.

windsurf web scrapingConfigure fastCRW MCP in ~/.windsurf/mcp.json
Integration Pages

Make Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW to Make scenarios with the HTTP module. Firecrawl-compatible scrape and search, small single static binary, local-first, self-host free under AGPL-3.0.

make web scrapingWorks with Make's built-in HTTP > Make a request module
Integration Pages

Langflow Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW to Langflow as a custom component or HTTP node. Firecrawl-compatible scrape and search, small single static binary, local-first, self-host free under AGPL-3.0.

langflow web scrapingCustom component definition for reusable fastCRW nodes
Integration Pages

OpenAI Agents SDK Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Give OpenAI Agents SDK agents a fastCRW scrape and search tool with the @function_tool decorator. Small single static binary, local-first, Firecrawl-compatible API, self-host free under AGPL-3.0.

openai agents sdk web scrapingNative function_tool wrappers for scrape and search
Integration Pages

Zapier Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Wire fastCRW into Zapier Zaps via the Webhooks step. Firecrawl-compatible scrape and search API, small single static binary, local-first, self-host free under AGPL-3.0.

zapier web scrapingWorks with the built-in Webhooks by Zapier action
Integration Pages

Google ADK Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Wire fastCRW into Google's Agent Development Kit as a FunctionTool. Firecrawl-compatible scrape and search, small single static binary, local-first, self-host free under AGPL-3.0.

google adk web scrapingFunctionTool wrappers for fastCRW scrape and search
Integration Pages

n8n Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Drop fastCRW into n8n workflows with the official n8n-nodes-crw community node, or the built-in HTTP Request node as a fallback. Firecrawl-compatible scrape and search endpoints, small single static binary, local-first, self-host free under AGPL-3.0.

n8n web scrapingOfficial n8n-nodes-crw community node — native scrape, search, crawl, map
Integration Pages

LangGraph Web Scraping Integration — fastCRW [Firecrawl-Compatible]

Add fastCRW as a ToolNode inside any LangGraph agent. Firecrawl-compatible API, small single static binary, local-first, self-host free under AGPL-3.0.

langgraph web scrapingToolNode-ready scrape and search tools
Integration Pages

MCP Web Scraping Integration — fastCRW [Firecrawl-Compatible]

fastCRW ships an official MCP server (crw-mcp) exposing scrape, search, crawl, map, and extract to any MCP-compatible client. Small single static binary, local-first, self-host free under AGPL-3.0.

mcp web scrapingOfficial crw-mcp server, single npx command
Recommended next step

Run a live scrape before you commit.

Use the hosted demo to test scrape, crawl, or map output with fastCRW semantics.

Try Playground