# 开发 Firecrawl MCP (/zh/mcp-server/development)

<!-- agent-signals: reading_time_min: 1 · est_tokens: 260 · updated: 2026-07-30 -->
Related: [在客户端中配置 Firecrawl MCP](/zh/mcp-server/clients.md), [连接 Firecrawl MCP](/zh/mcp-server/connect.md), [在本地运行 Firecrawl MCP](/zh/mcp-server/local.md), [Firecrawl MCP 工具和操作](/zh/mcp-server/tools.md)

<div id="prerequisites">
  ## 前提条件 [#前提条件]
</div>

* [Git](https://git-scm.com/downloads)
* Node.js 22 或更高版本
* npm (随 Node.js 一同提供)

安装依赖项前，请确认 Node.js 版本：

```bash
node --version
```

<div id="clone-and-test-the-server">
  ## 克隆并测试服务器 [#克隆并测试服务器]
</div>

```bash
git clone https://github.com/firecrawl/firecrawl-mcp-server.git
cd firecrawl-mcp-server
npm install
npm run build
npm test
```

提交更改前运行代码检查工具：

```bash
npm run lint
```

<div id="contributing">
  ## 参与贡献 [#参与贡献]
</div>

1. Fork [Firecrawl MCP 服务器仓库](https://github.com/firecrawl/firecrawl-mcp-server)。
2. 克隆你的 fork 并创建功能分支。
3. 运行 `npm run lint` 和 `npm test`。
4. 提交拉取请求，并附上行为说明和验证依据。

<div id="thanks-to-contributors">
  ## 致谢贡献者 [#致谢贡献者]
</div>

感谢 [@vrknetha](https://github.com/vrknetha) 和 [@cawstudios](https://caw.tech) 完成初始实现！

感谢 MCP.so 和 Klavis AI 提供托管服务，也感谢 [@gstarwd](https://github.com/gstarwd)、[@xiangkaiz](https://github.com/xiangkaiz) 和 [@zihaolin96](https://github.com/zihaolin96) 集成我们的服务器。

<div id="license">
  ## 许可证 [#许可证]
</div>

MIT 许可证——详情请参见 LICENSE 文件
