快速开始#
Set up Firecrawl MCP
Sign in via browser.
Run this in your terminal to add Firecrawl as a remote MCP server in Codex.
codex mcp add firecrawl --url https://mcp.firecrawl.dev/v2/mcp-oauth && codex mcp login firecrawlThen enter /mcp in Codex and confirm firecrawl is connected.
Run this in your terminal to add Firecrawl as a remote MCP server in Claude Code.
claude mcp add --transport http firecrawl https://mcp.firecrawl.dev/v2/mcp-oauthThen enter /mcp in Claude Code and complete the browser sign-in.
Install the hosted MCP server in one click, or copy the configuration below.
Add to Cursor{
"mcpServers": {
"firecrawl": {
"url": "https://mcp.firecrawl.dev/v2/mcp-oauth"
}
}
}Open Cursor Settings, select MCP, and complete the Firecrawl sign-in.
Add this remote server configuration to your global or project config. OpenCode opens Firecrawl in your browser on first use.
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"firecrawl": {
"type": "remote",
"url": "https://mcp.firecrawl.dev/v2/mcp-oauth",
"enabled": true
}
}
}Sign in and approve access, then confirm firecrawl is connected.
直接使用 API 构建#
立即抓取你的第一个页面。此请求无需账户或 API 密钥。
需要更高限额时,请添加 API 密钥。请参见 Python SDK、Node SDK 或 API Reference,了解如何将其集成到你的应用中。
其他开始使用方式#
安装 Firecrawl CLI#
只需一条命令,即可安装 Firecrawl CLI、在浏览器中完成身份验证,并为检测到的每个编码代理添加技能。
完成设置后请重启你的编码代理,以便其发现这些新技能。完整的配置流程请参见 CLI。
使用代理设置#
将此 Firecrawl 设置 prompt 提供给你的代理,或请参见所有 MCP 设置选项。
**对于 AI 代理:**使用 llms.txt 获取文档索引,或使用 llms-full.txt 获取完整文本。
直接构建和测试#
Firecrawl 可以做什么?#
为什么选择 Firecrawl?#
- 适用于 LLM 的输出:干净的 markdown、结构化 JSON、截图等。
- 应对复杂场景:代理、反机器人机制、JavaScript 渲染以及动态内容。
- 可靠:专为生产环境打造,具备高可用性和稳定一致的结果。
- 快速:数秒内返回结果,并针对高吞吐量进行了优化。
- MCP Server:通过 模型上下文协议 将 Firecrawl 连接到任何 AI 工具。
如需获得奖励资格,请通过我们的 Firecrawl Feedback Assistant 完成一次高质量访谈 (提供经过思考的具体用例等) 。只需几分钟,随时可停止,且对人类和代理都很友好 (只需将链接粘贴到您的代理工具中!) 。刚接触 Firecrawl?您的看法同样重要。
开始访谈
请填写您的 Email 以获得奖励资格。我们会在每周结束时审核访谈质量。
搜索#
进行网页搜索,并在一次调用中获取搜索结果的完整页面内容。请参见 Search 功能文档 了解所有选项。
响应
SDK 会直接返回数据对象。cURL 会返回完整的 payload。
抓取#
抓取任意 URL,并以 markdown、HTML 或其他格式获取其内容。请参见 Scrape 功能文档 了解所有选项。
响应
各 SDK 将直接返回数据对象。cURL 将按下方所示原样返回有效载荷。
交互#
抓取页面后,继续与其交互:点击按钮、填写表单、提取动态内容,或继续深入导航。你可以用简单的英文描述你的需求,或编写代码以实现完全控制。请参见 Interact 功能文档 了解所有选项。

