firecrawl-map
GitHub发现并列出网站URL,支持搜索过滤。用于站点结构映射或查找特定页面,常与抓取配合使用。
Trigger Scenarios
Install
npx skills add firecrawl/cli --skill firecrawl-map -g -y
SKILL.md
Frontmatter
{
"name": "firecrawl-map",
"description": "Discover and list a site's URLs, with search filtering. Use for \"map the site\" or \"find the URL for\" requests — when the user knows the site but not the exact page, or wants site structure.\n",
"allowed-tools": [
"Bash(firecrawl *)",
"Bash(npx firecrawl-cli *)"
]
}
firecrawl map
Discover URLs on a site. Use --search to find a specific page within a large site.
Prerequisite: map requires authentication (no keyless free tier); without credentials the CLI prompts an interactive login.
Quick start
# Find a specific page on a large site
firecrawl map "<url>" --search "authentication" -o .firecrawl/filtered.txt
# Get all URLs
firecrawl map "<url>" --limit 500 --json -o .firecrawl/urls.json
Run firecrawl map --help for the full option list (sitemap handling, subdomains, etc.).
Done when: the URL list is saved under .firecrawl/ and you have selected the URLs to scrape or crawl next.
Tips
- Map + scrape is a common pattern: use
map --searchto find the right URL, thenscrapeit. - Example:
map https://docs.example.com --search "auth"→ found/docs/api/authentication→scrapethat URL.
See also
- firecrawl-scrape — scrape the URLs you discover
- firecrawl-crawl — bulk extract instead of map + scrape
- firecrawl-download — download entire site (uses map internally)
- firecrawl-build-search — building URL discovery into an app instead of running it here
Version History
-
86aaf06
Current 2026-08-27 16:51
重构技能文档结构:移除冗余的选项表和‘何时使用’部分,改为指向帮助命令;将描述重写为触发优先形式以节省Token;新增明确的完成标准(Done when)。
-
253abde
2026-08-19 19:06
修复了跨技能链接404问题,将文件夹重命名为与frontmatter一致;澄清了认证和API行为说明;修正了allowed-tools的npx模式和工作流链接。
- 6c50c5d 2026-07-24 11:49


