Install
openclaw skills install firecrawl-local-search抓取网站数据的本地 Firecrawl 服务。使用本地 API (http://192.168.1.2:3002/) 进行网页抓取、数据提取和站内搜索。
openclaw skills install firecrawl-local-search使用本地 Firecrawl 服务抓取网站数据。
http://192.168.1.2:3002/curl -X POST "http://192.168.1.2:3002/v1/scrape" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com", "formats": ["markdown"]}'
curl -X POST "http://192.168.1.2:3002/v1/map" \
-H "Content-Type: application/json" \
-d '{"url": "https://example.com"}'
python3 scripts/firecrawl_search.py "关键词" --site https://example.com
scripts/firecrawl_scrape.py - 网页抓取(无需外部依赖)scripts/firecrawl_map.py - 网站地图scripts/firecrawl_search.py - 内容搜索✅ 无需安装任何依赖 - 使用 Python 标准库 urllib.request
http://192.168.1.2:3002/