[Update] [2026-02-08 04:10:19] 3 files

This commit is contained in:
Adam Ladachowski
2026-02-08 04:10:19 +01:00
parent 55ac23b1f7
commit 691ba94437
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ curl localhost:13373 -d '{"cmd":"screenshot","path":"screenshots/page.png"}'
Run as MCP server for Claude Code integration: Run as MCP server for Claude Code integration:
```bash ```bash
claude-browse-mcp browse-mcp
``` ```
The MCP server (`src/mcp.ts`) exposes all browser commands as tools. It uses stdio transport and auto-launches the browser on first command. The MCP server (`src/mcp.ts`) exposes all browser commands as tools. It uses stdio transport and auto-launches the browser on first command.
+2 -2
View File
@@ -133,7 +133,7 @@ Use with any MCP-compatible client:
```bash ```bash
# Run the MCP server # Run the MCP server
claude-browse-mcp browse-mcp
``` ```
Add to Claude Code's MCP config (`~/.claude/settings.json`): Add to Claude Code's MCP config (`~/.claude/settings.json`):
@@ -142,7 +142,7 @@ Add to Claude Code's MCP config (`~/.claude/settings.json`):
{ {
"mcpServers": { "mcpServers": {
"browser": { "browser": {
"command": "claude-browse-mcp" "command": "browse-mcp"
} }
} }
} }
+1 -1
View File
@@ -7,7 +7,7 @@
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"bin": { "bin": {
"claude-browse": "dist/cli.js", "claude-browse": "dist/cli.js",
"claude-browse-mcp": "dist/mcp.js" "browse-mcp": "dist/mcp.js"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",