Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,24 @@ Add this to your `./codeium/windsurf/model_config.json`:
}
```

### Running on Codex CLI

Run this command:

```bash
# replace with actual firecrawl api key
codex mcp add firecrawl --env FIRECRAWL_API_KEY=fc-YOUR_API_KEY-- npx -y firecrawl-mcp
```

Or add this lines to your Codex configuration (by default, in `~/.codex/codex.toml`) to register the Firecrawl MCP server:

```toml
[mcp_servers.firecrawl]
command = "npx"
args = ["-y", "firecrawl-mcp"]
env = {"FIRECRAWL_API_KEY" = "fc-YOUR_API_KEY"}
```

### Running with Streamable HTTP Local Mode

To run the server using Streamable HTTP locally instead of the default stdio transport:
Expand Down