github: https://github.com/firecrawl/firecrawl
文档: https://docs.firecrawl.dev/introduction
firecrawl-mcp-server : https://github.com/firecrawl/firecrawl-mcp-server
安装:
git clone https://github.com/firecrawl/firecrawl.git
cd firecrawl
docker compose up -d
测试是否成功
curl -X GET http://localhost:3002/test
API test:
如果你想测试 /crawl 端点,可以运行以下命令:
curl -X POST http://localhost:3002/v2/crawl \ -H 'Content-Type: application/json' \ -d '{ "url": "https://docs.firecrawl.dev" }'
(如果需要)
firecrawl-mcp-server 安装:
拉取代码:
git clone sudo docker build -t happysea/firecrawl-mcp-server . cd firecrawl-mcp-server sudo docker build -t happysea/firecrawl-mcp-server .
sudo docker run -itd --restart=unless-stopped --name=firecrawl-mcp-server -p 3000:3000 -e 'FIRECRAWL_API_URL=http://192.168.18.55:3002' -e 'FIRECRAWL_API_KEY=123456' happysea/firecrawl-mcp-server