From ce6ecaaf0fac5bf60c871238873cbeee217cbc08 Mon Sep 17 00:00:00 2001 From: Savin Mikhail Date: Sat, 18 Oct 2025 18:46:57 +0300 Subject: [PATCH 1/2] doc(installation): add codex sample --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 7da83cc..c603b15 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,17 @@ Add this to your `./codeium/windsurf/model_config.json`: } ``` +### Running on Codex CLI + +Add this 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: From d48a58b1fd3b2678a9516244b03a50555fdc0018 Mon Sep 17 00:00:00 2001 From: Savin Mikhail Date: Tue, 4 Nov 2025 19:04:49 +0700 Subject: [PATCH 2/2] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c603b15..13bf1af 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,14 @@ Add this to your `./codeium/windsurf/model_config.json`: ### Running on Codex CLI -Add this to your Codex configuration (by default, in `~/.codex/codex.toml`) to register the Firecrawl MCP server: +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]