litellm - 💡(How to fix) Fix MCP Registry: Browserbase server has wrong npm package name [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
BerriAI/litellm#24769Fetched 2026-04-08 01:49:15
View on GitHub
Comments
0
Participants
1
Timeline
1
Reactions
0
Participants
Timeline (top)
labeled ×1

Error Message

npm error 404 Not Found - GET https://registry.npmjs.org/@anthropic%2fmcp-server-browserbase - Not found
npm error 404  The requested resource '@anthropic/mcp-server-browserbase@*' could not be found or you do not have permission to access it.

Fix Action

Fix

Update litellm/proxy/mcp_registry.json line ~311:

-  "args": ["-y", "@anthropic/mcp-server-browserbase"],
+  "args": ["-y", "@browserbasehq/mcp"],

Verified @browserbasehq/mcp works correctly inside the LiteLLM container.

Code Example

"command": "npx",
"args": ["-y", "@anthropic/mcp-server-browserbase"]

---

"command": "npx",
"args": ["-y", "@browserbasehq/mcp"]

---

npm error 404 Not Found - GET https://registry.npmjs.org/@anthropic%2fmcp-server-browserbase - Not found
npm error 404  The requested resource '@anthropic/mcp-server-browserbase@*' could not be found or you do not have permission to access it.

---

-  "args": ["-y", "@anthropic/mcp-server-browserbase"],
+  "args": ["-y", "@browserbasehq/mcp"],
RAW_BUFFERClick to expand / collapse

Bug

The built-in MCP registry (litellm/proxy/mcp_registry.json) defines the Browserbase server with the wrong npm package name:

Current (broken):

"command": "npx",
"args": ["-y", "@anthropic/mcp-server-browserbase"]

Correct:

"command": "npx",
"args": ["-y", "@browserbasehq/mcp"]

Error

npm error 404 Not Found - GET https://registry.npmjs.org/@anthropic%2fmcp-server-browserbase - Not found
npm error 404  The requested resource '@anthropic/mcp-server-browserbase@*' could not be found or you do not have permission to access it.

Steps to Reproduce

  1. Go to LiteLLM UI → MCP Servers → Add from registry → Browserbase
  2. Enter API key and Project ID
  3. Save and wait 30s
  4. Tool discovery fails with 404 from npm

Fix

Update litellm/proxy/mcp_registry.json line ~311:

-  "args": ["-y", "@anthropic/mcp-server-browserbase"],
+  "args": ["-y", "@browserbasehq/mcp"],

Verified @browserbasehq/mcp works correctly inside the LiteLLM container.

extent analysis

Fix Plan

To resolve the issue, update the mcp_registry.json file with the correct npm package name for the Browserbase server.

Step-by-Step Solution:

  1. Open the litellm/proxy/mcp_registry.json file.
  2. Locate the line with the incorrect package name (around line 311).
  3. Replace the incorrect line with the correct one:
-  "args": ["-y", "@anthropic/mcp-server-browserbase"],
+  "args": ["-y", "@browserbasehq/mcp"],

Example Code Snippet: The corrected JSON object should look like this:

"command": "npx",
"args": ["-y", "@browserbasehq/mcp"]

Verification

After updating the mcp_registry.json file, verify the fix by:

  • Going to LiteLLM UI → MCP Servers → Add from registry → Browserbase
  • Entering the API key and Project ID
  • Saving and waiting 30 seconds to ensure tool discovery completes successfully without the 404 error.

Extra Tips

  • Make sure to test the updated configuration in a controlled environment before deploying it to production.
  • If issues persist, check the npm package version and ensure it is compatible with the LiteLLM container.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING