💬 Commit message: Update 2026-02-06 20:47:16, 1 files, 23 lines

📁 Files changed: 1
📝 Lines changed: 23

  • README.md
This commit is contained in:
Adam Ladachowski
2026-02-06 20:47:16 +01:00
parent 1512878bfd
commit 1e9c3e4ac7
+23
View File
@@ -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