MCP.so
Sign In

browser-use MCP Server

@win4r

About browser-use MCP Server

No overview available yet

Config

No standard config provided

This server doesn't expose a parseable MCP config block in its README. See the repository for install instructions.

Repository

Tools

1

Create new text notes

Overview

What is browser-use MCP Server?

browser-use MCP Server is a TypeScript-based implementation of the Model Context Protocol that provides a simple notes system. It demonstrates core MCP concepts by offering resources for text notes, tools for creating new notes, and prompts for generating summaries.

How to use browser-use MCP Server?

Install dependencies with npm install, build with npm run build, and configure the server in your MCP client (e.g., Claude Desktop) by adding the path to the built index.js to the mcpServers configuration. For development, use npm run watch for auto-rebuild.

Key features of browser-use MCP Server

  • Resources represent text notes with URIs and metadata
  • create_note tool for creating new text notes
  • summarize_notes prompt for generating note summaries
  • Notes are stored in server state
  • Plain text mime type for simple content access

Use cases of browser-use MCP Server

  • Demonstrating core MCP concepts like resources, tools, and prompts
  • Managing a small set of text notes with an LLM interface
  • Testing MCP client interactions with a lightweight server

FAQ from browser-use MCP Server

What resources does the server provide?

Resources represent text notes accessible via note:// URIs, each with a title, content, and metadata.

What tools are available?

The create_note tool creates new text notes, requiring title and content as parameters.

What prompts are included?

The summarize_notes prompt generates a summary of all stored notes, embedding note contents as resources.

How do I debug the server?

Use the MCP Inspector by running npm run inspector; it provides a URL for debugging tools in your browser.

How do I install the server for Claude Desktop?

Add the server configuration to claude_desktop_config.json (MacOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%/Claude/), specifying the path to build/index.js as the command.

Frequently asked questions

What resources does the server provide?

Resources represent text notes accessible via `note://` URIs, each with a title, content, and metadata.

What tools are available?

The `create_note` tool creates new text notes, requiring title and content as parameters.

What prompts are included?

The `summarize_notes` prompt generates a summary of all stored notes, embedding note contents as resources.

How do I debug the server?

Use the MCP Inspector by running `npm run inspector`; it provides a URL for debugging tools in your browser.

How do I install the server for Claude Desktop?

Add the server configuration to `claude_desktop_config.json` (MacOS: `~/Library/Application Support/Claude/`, Windows: `%APPDATA%/Claude/`), specifying the path to `build/index.js` as the command.

Comments

More Browser Automation MCP servers