Skip to main content
ClaudeWave

Open-source browser automation for AI agents. MCP server + Chrome extension + YAML workflow engine + knowledge packs. Give your AI agent a browser and domain expertise.

MCP ServersRegistry oficial5 estrellas1 forksTypeScriptApache-2.0Actualizado today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
Last scanned: 6/11/2026
Install in Claude Code / Claude Desktop
Method: NPX · sidebutton
Claude Code CLI
claude mcp add sidebutton -- npx -y sidebutton
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "sidebutton": {
      "command": "npx",
      "args": ["-y", "sidebutton"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Casos de uso

Resumen de MCP Servers

# SideButton

**Open-source AI agent platform — MCP server, knowledge packs, and workflow automation tools.**

[![License](https://img.shields.io/badge/license-Apache--2.0%20%2B%20FSL--1.1-blue.svg)](LICENSING.md)
[![Website](https://img.shields.io/badge/website-sidebutton.com-purple)](https://sidebutton.com)
[![Docs](https://img.shields.io/badge/docs-docs.sidebutton.com-green)](https://docs.sidebutton.com)

> **[Website](https://sidebutton.com)** · **[Documentation](https://docs.sidebutton.com)** · **[GitHub](https://github.com/sidebutton/sidebutton)**

<p align="center">
  <a href="https://sidebutton.com/media/sidebutton-open-source-platform-release">
    <img src="https://sidebutton.com/media/sidebutton-agent-stack.png" alt="The AI Agent Stack — SideButton" width="700" />
  </a>
</p>

AI agent platform with 40+ AI agent tools. Run autonomous AI agents with agentic workflows, knowledge packs, and real browser control. Connect Claude Code, Cursor, ChatGPT, or any MCP client.

```bash
npx sidebutton@latest
# Dashboard at http://localhost:9876
```

## What you get

| | |
|---|---|
| **MCP Server** | 40+ AI agent tools for browser control, workflow execution, knowledge pack access. Stdio and SSE transports. |
| **REST API** | 60+ endpoints. Trigger workflows remotely from webhooks, cron jobs, mobile apps, or other agents. |
| **Workflow Engine** | AI workflow automation with 34+ step types — browser, shell, LLM, control flow. Define agentic workflows in YAML. |
| **Knowledge Packs** | Installable domain knowledge — CSS selectors, data models, state machines. Role playbooks turn coding agents into an AI software engineer, QA, or PM. |
| **Chrome Extension** | 40+ browser commands. Real DOM access via WebSocket, not screenshots. Recording mode. |
| **Dashboard** | Svelte UI — workflow browser, run logs, skill pack manager, system status. |

## Quick Start

```bash
# Install and start
npx sidebutton@latest

# Or from source
pnpm install && pnpm build && pnpm start

# Open http://localhost:9876
```

### CLI

```bash
pnpm cli serve          # Start server with dashboard
pnpm cli serve --stdio  # Start with stdio transport (for Claude Desktop)
pnpm cli list           # List available workflows
pnpm cli status         # Check server status

# Skill pack management
pnpm cli registry add <path|url>   # Install skill packs from a registry
pnpm cli registry update [name]    # Update installed packs
pnpm cli registry remove <name>    # Uninstall packs and remove registry
pnpm cli search [query]            # Search available skill packs

# Creating skill packs
pnpm cli init [domain]             # Scaffold a new skill pack
pnpm cli validate [path]           # Validate pack structure
pnpm cli publish [source]          # Publish to a registry
```

## MCP Server

SideButton is an AI agent platform and MCP server. AI coding agents connect to it directly for browser control, workflow automation, and domain knowledge.

Works with **Claude Code**, **Cursor**, **Claude Desktop**, **VS Code**, **Windsurf**, **ChatGPT** — any MCP client.

### Claude Code

Add to `~/.claude/settings.json`:

```json
{
  "mcpServers": {
    "sidebutton": {
      "type": "sse",
      "url": "http://localhost:9876/mcp"
    }
  }
}
```

### Claude Desktop

Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "sidebutton": {
      "command": "npx",
      "args": ["sidebutton", "--stdio"]
    }
  }
}
```

### Cursor

Add to `~/.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "sidebutton": {
      "url": "http://localhost:9876/mcp"
    }
  }
}
```

### MCP Tools

| Tool | Description |
|------|-------------|
| `run_workflow` | Execute a workflow by ID |
| `list_workflows` | List all available workflows |
| `get_workflow` | Get workflow YAML definition |
| `get_run_log` | Get execution log for a run |
| `list_run_logs` | List recent workflow executions |
| `get_browser_status` | Check browser extension connection |
| `capture_page` | Capture selectors from current page |
| `navigate` | Navigate browser to URL |
| `snapshot` | Get page accessibility snapshot |
| `click` | Click an element |
| `type` | Type text into an element |
| `scroll` | Scroll the page |
| `screenshot` | Capture page screenshot |
| `hover` | Hover over element |
| `extract` | Extract text from element |
| `extract_all` | Extract all matching elements |
| `extract_map` | Extract structured data from repeated elements |
| `select_option` | Select dropdown option |
| `fill` | Fill input value (React-compatible) |
| `press_key` | Send keyboard keys |
| `scroll_into_view` | Scroll element into viewport |
| `evaluate` | Execute JavaScript in browser |
| `exists` | Check if element exists |
| `wait` | Wait for element or delay |
| `check_writing_quality` | Evaluate text quality |

## REST API

60+ JSON endpoints for external integrations. Same workflows available via MCP locally and via REST remotely.

```bash
# Run a workflow
curl -X POST http://localhost:9876/api/workflows/check_ticket/run \
  -H "Content-Type: application/json" \
  -d '{"params": {"ticket_id": "PROJ-123"}}'

# List workflows
curl http://localhost:9876/api/workflows

# Get run log
curl http://localhost:9876/api/runs/latest
```

Trigger workflows from webhooks, cron jobs, mobile apps, or other agents on different machines.

## Workflow Engine

YAML-first orchestration. 34+ step types:

### Step Types

| Type | Description |
|------|-------------|
| **Browser** | |
| `browser.navigate` | Open a URL |
| `browser.click` | Click an element by selector |
| `browser.type` | Type text into an element |
| `browser.fill` | Fill input value (React-compatible) |
| `browser.scroll` | Scroll the page |
| `browser.extract` | Extract text from element into variable |
| `browser.extractAll` | Extract all matching elements |
| `browser.extractMap` | Extract structured data from repeated elements |
| `browser.wait` | Wait for element or fixed delay |
| `browser.exists` | Check if element exists |
| `browser.hover` | Position cursor on element |
| `browser.key` | Send keyboard keys |
| `browser.snapshot` | Capture accessibility snapshot |
| `browser.injectCSS` | Inject CSS styles into page |
| `browser.injectJS` | Execute JavaScript in page |
| `browser.select_option` | Select dropdown option |
| `browser.scrollIntoView` | Scroll element into view |
| **Shell** | |
| `shell.run` | Execute a bash command |
| `terminal.open` | Open a visible terminal window (macOS) |
| `terminal.run` | Run command in terminal window |
| **LLM** | |
| `llm.classify` | Structured classification with categories |
| `llm.generate` | Free-form text generation |
| **Control Flow** | |
| `control.if` | Conditional branching |
| `control.retry` | Retry with backoff |
| `control.stop` | End workflow with message |
| `workflow.call` | Call another workflow with parameters |
| **Data** | |
| `data.first` | Extract first item from list |

LLM steps work with Ollama (local), OpenAI, Anthropic, and Google.

### Example

```yaml
id: check_ticket_status
title: "Check Jira ticket and classify"
steps:
  - type: browser.navigate
    url: "https://your-org.atlassian.net/browse/{{ticket_id}}"
  - type: browser.extract
    selector: "[data-testid='status-field']"
    as: current_status
  - type: control.if
    condition: "{{current_status}} != 'Done'"
    then:
      - type: llm.classify
        prompt: "Should this ticket be closed? Context: {{current_status}}"
        classes: [close, keep_open]
        as: decision
```

### Variable Interpolation

Use `{{variable}}` syntax to reference extracted values or parameters:

```yaml
steps:
  - type: browser.extract
    selector: ".username"
    as: user
  - type: shell.run
    cmd: "echo 'Hello, {{user}}!'"
```

## Knowledge Packs

Installable domain knowledge (skill packs) per web app or domain. Knowledge packs power AI code review, automated testing, and enterprise AI agent deployments.

Also referred to as skill packs in code and CLI commands.

- **Selectors** — CSS selectors for UI elements
- **Data models** — entity types, fields, relationships, valid states
- **State machines** — valid transitions per state
- **Role playbooks** — role-specific procedures (QA, SE, PM, SD)
- **Common tasks** — step-by-step procedures, gotchas, edge cases

```bash
sidebutton install github.com
sidebutton install atlassian.net
```

11 domains, 28+ modules published. Open registry — build and share packs for any web app.

## Chrome Extension

Install from the **[Chrome Web Store](https://chromewebstore.google.com/detail/sidebutton/odaefhmdmgijnhdbkfagnlnmobphgkij)**.

- 40+ browser commands — navigate, click, type, extract, scroll, wait, snapshot
- Real DOM access via CSS selectors — not pixel coordinates, not screenshots
- Recording mode — capture manual actions as workflows
- Embed buttons — inject action buttons into any web page
- WebSocket connection — stable reconnection, works with local or remote server

After installing:
1. Navigate to any website
2. Click the SideButton extension icon
3. Click **"Connect This Tab"**

## Dashboard & Observability

Svelte UI at `http://localhost:9876`:

- Workflow browser — list, search, run
- Run logs — step-by-step execution traces with timing, variables, errors
- Skill pack manager — install, browse, inspect
- System status — extension connection, LLM config, server health

SideButton handles AI agent orchestration — from workflow execution to knowledge injection.

## Architecture

```
┌──────────────────────────────────────────────────────────────────────────┐
│                          @sidebutton/server                               │
│                                                                          │
│  ┌─────────────────────┐   ┌──────────────────────────────────────────┐  │
│  │  stdio Transport    │   │    Fastify HTTP + WebSocket (port 9876)  │  │
│  │  ─────────────────  │   │    ────────────────────────────────────  │  │
│  │  stdin → JSON
ai-agentsautomationbrowser-automationchrome-extensionknowledge-packsmcpmcp-servertypescriptworkflow-engineyaml

Lo que la gente pregunta sobre sidebutton

¿Qué es sidebutton/sidebutton?

+

sidebutton/sidebutton es mcp servers para el ecosistema de Claude AI. Open-source browser automation for AI agents. MCP server + Chrome extension + YAML workflow engine + knowledge packs. Give your AI agent a browser and domain expertise. Tiene 5 estrellas en GitHub y se actualizó por última vez today.

¿Cómo se instala sidebutton?

+

Puedes instalar sidebutton clonando el repositorio (https://github.com/sidebutton/sidebutton) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar sidebutton/sidebutton?

+

Nuestro agente de seguridad ha analizado sidebutton/sidebutton y le ha asignado un Trust Score de 87/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene sidebutton/sidebutton?

+

sidebutton/sidebutton es mantenido por sidebutton. La última actividad registrada en GitHub es de today, con 23 issues abiertos.

¿Hay alternativas a sidebutton?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega sidebutton en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: sidebutton/sidebutton
[![Featured on ClaudeWave](https://claudewave.com/api/badge/sidebutton-sidebutton)](https://claudewave.com/repo/sidebutton-sidebutton)
<a href="https://claudewave.com/repo/sidebutton-sidebutton"><img src="https://claudewave.com/api/badge/sidebutton-sidebutton" alt="Featured on ClaudeWave: sidebutton/sidebutton" width="320" height="64" /></a>

Más MCP Servers

Alternativas a sidebutton