1.3 KiB
1.3 KiB
| name | description |
|---|---|
| firecrawl-cli-installation | Install the official Firecrawl CLI and handle authentication. Package: https://www.npmjs.com/package/firecrawl-cli Source: https://github.com/firecrawl/cli Docs: https://docs.firecrawl.dev/sdks/cli |
Firecrawl CLI Installation
Quick Setup (Recommended)
npx -y firecrawl-cli -y
This installs firecrawl-cli globally, authenticates via browser, and installs all skills.
Skills are installed globally across all detected coding editors by default.
To install skills manually:
firecrawl setup skills
Manual Install
npm install -g firecrawl-cli@1.8.0
Verify
firecrawl --status
Authentication
Authenticate using the built-in login flow:
firecrawl login --browser
This opens the browser for OAuth authentication. Credentials are stored securely by the CLI.
If authentication fails
Ask the user how they'd like to authenticate:
- Login with browser (Recommended) - Run
firecrawl login --browser - Enter API key manually - Run
firecrawl login --api-key "<key>"with a key from firecrawl.dev
Command not found
If firecrawl is not found after installation:
- Ensure npm global bin is in PATH
- Try:
npx firecrawl-cli@1.8.0 --version - Reinstall:
npm install -g firecrawl-cli@1.8.0