-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
add browser-use mcp server #2735
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -607,4 +607,16 @@ export const MCP_ENTRIES_COMMUNITY: MCPRegistryEntry[] = [ | |||||||||||
| }, | ||||||||||||
| }, | ||||||||||||
| }, | ||||||||||||
| { | ||||||||||||
| name: 'browser-use', | ||||||||||||
| title: 'Browser Use', | ||||||||||||
| description: | ||||||||||||
| 'Browser automation with real-time web access and search capabilities. Provides tools for executing browser tasks, managing persistent authentication profiles, and monitoring task progress.', | ||||||||||||
| icon: 'https://browser-use.com/favicon.ico', | ||||||||||||
| homepage: 'https://github.com/browser-use/browser-use', | ||||||||||||
| configuration: { | ||||||||||||
| command: 'npx', | ||||||||||||
| args: ['mcp-remote', 'https://api.browser-use.com/mcp', '--header', 'X-Browser-Use-API-Key: <YOUR_API_KEY>'], | ||||||||||||
|
||||||||||||
| args: ['mcp-remote', 'https://api.browser-use.com/mcp', '--header', 'X-Browser-Use-API-Key: <YOUR_API_KEY>'], | |
| args: ['mcp-remote', 'https://api.browser-use.com/mcp'], | |
| env: { | |
| BROWSER_USE_API_KEY: '<YOUR_API_KEY>', | |
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
npxcommand should include the-yflag for consistency with other registry entries usingmcp-remote. The Sentry entry (line 240) shows the pattern:args: ['-y', 'mcp-remote', 'https://mcp.sentry.dev/sse']. This flag auto-confirms package installation and avoids user prompts during setup.