From a717cdd58b24b141fdf207761dcb0403d5e2958f Mon Sep 17 00:00:00 2001 From: Steven Gates Date: Tue, 23 Jun 2026 15:49:20 -0500 Subject: [PATCH 1/2] fix(crashlytics-autotriage): drop unsupported --project flag from MCP config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `firebase mcp` does not accept `--project` — passing it makes the server process crash on startup with `ERR_PARSE_ARGS_UNKNOWN_OPTION: Unknown option '--project'`. The MCP client then reports the server as `status: "pending"` forever (confirmed in run #18's SDK init), so the crashlytics_* tools never load. Verified locally: the exact command from the config throws this error. The project resolves from the tracked `.firebaserc` (default openloop-8c266) via `--dir .`, so `--project` was never needed. --- .github/firebase-mcp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/firebase-mcp.json b/.github/firebase-mcp.json index 267b414..716da8c 100644 --- a/.github/firebase-mcp.json +++ b/.github/firebase-mcp.json @@ -2,7 +2,7 @@ "mcpServers": { "firebase": { "command": "npx", - "args": ["-y", "firebase-tools", "mcp", "--dir", ".", "--project", "openloop-8c266", "--only", "crashlytics"] + "args": ["-y", "firebase-tools", "mcp", "--dir", ".", "--only", "crashlytics"] } } } From 21d9620391811c4bc4ea310d89ff88b65378d356 Mon Sep 17 00:00:00 2001 From: Steven Gates Date: Tue, 23 Jun 2026 15:50:56 -0500 Subject: [PATCH 2/2] fix(crashlytics-autotriage): call pre-installed `firebase` binary directly Match the verified-working local config: drop `--project` (unsupported by `firebase mcp`, crashed the server) and invoke the `firebase` binary the Pre-install step puts on PATH, instead of `npx -y firebase-tools` (avoids npx resolution at MCP startup). Project resolves from .firebaserc via --dir. --- .github/firebase-mcp.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/firebase-mcp.json b/.github/firebase-mcp.json index 716da8c..e4c62a6 100644 --- a/.github/firebase-mcp.json +++ b/.github/firebase-mcp.json @@ -1,8 +1,8 @@ { "mcpServers": { "firebase": { - "command": "npx", - "args": ["-y", "firebase-tools", "mcp", "--dir", ".", "--only", "crashlytics"] + "command": "firebase", + "args": ["mcp", "--dir", ".", "--only", "crashlytics"] } } }