From 1e9c3e4ac77faa2a73644222187ab165256657a4 Mon Sep 17 00:00:00 2001 From: Adam Ladachowski Date: Fri, 6 Feb 2026 20:47:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20Commit=20message:=20Update=20202?= =?UTF-8?q?6-02-06=2020:47:16,=201=20files,=2023=20lines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 📁 Files changed: 1 📝 Lines changed: 23 • README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 7578181..f47a6c4 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,29 @@ curl -X POST localhost:3000 -d '{"cmd":"wait","ms":2000}' curl -X POST localhost:3000 -d '{"cmd":"close"}' ``` +## MCP Server (Model Context Protocol) + +Use with Claude Code or any MCP-compatible client: + +```bash +# Run the MCP server +claude-browse-mcp +``` + +Add to Claude Code's MCP config (`~/.claude/settings.json`): + +```json +{ + "mcpServers": { + "browser": { + "command": "claude-browse-mcp" + } + } +} +``` + +Available tools: `goto`, `click`, `type`, `query`, `screenshot`, `url`, `html`, `back`, `forward`, `reload`, `wait`, `eval` + ## Programmatic Usage ```typescript