npm @sidebutton/serverstdioApache-2.0updated 7d ago
Open-source AI agent platform for agentic coding β MCP server, knowledge packs, and AI workflow automation.
Was kannst du mit SideButton MCP Server machen?
SideButton
Open-source AI agent platform for agentic coding β MCP server, knowledge packs, and AI workflow automation.
Run AI coding agents with agentic workflows, knowledge packs, and real browser control. Connect Claude Code, Codex, Cursor, ChatGPT, or any MCP client.
npx sidebutton@latest
# Dashboard at http://localhost:9876
What you get
| MCP Server | AI agent tools for browser control, workflow execution, and knowledge pack access. Stdio and SSE transports. |
| REST API | Trigger workflows remotely from webhooks, cron jobs, mobile apps, or other agents. |
| Workflow Engine | AI workflow automation with browser, git, issue-tracking, LLM, shell, and control-flow steps. 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 | Browser commands with real DOM access via WebSocket, not screenshots. Recording mode. |
| Dashboard | Svelte UI β workflow browser, run logs, skill pack manager, system status. |
Quick Start
# Install and start
npx sidebutton@latest
# Or from source
pnpm install && pnpm build && pnpm start
# Open http://localhost:9876
CLI
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 open-source MCP server for AI coding agents. Agents connect to it directly for browser control, workflow automation, and domain knowledge.
Works with Claude Code, Codex, Cursor, Claude Desktop, VS Code, Windsurf, ChatGPT β any MCP client.
Claude Code
claude mcp add sidebutton --transport http http://localhost:9876/mcp
Persists to ~/.claude.json; add --scope project to write ./.mcp.json instead. Full guide: Claude Code SideButton MCP setup.
Codex
Add to ~/.codex/config.toml:
[mcp_servers.sidebutton]
command = "sidebutton"
args = ["serve", "--stdio"]
Full guide: OpenAI Codex SideButton MCP setup.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sidebutton": {
"command": "npx",
"args": ["sidebutton", "--stdio"]
}
}
}
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"sidebutton": {
"url": "http://localhost:9876/mcp"
}
}
}
MCP Tools
| Tool | Description |
|---|---|
run_workflow |
Execute a workflow by ID |
get_run_log |
Get execution log for a run |
list_workflows |
List all available workflows |
get_workflow |
Get workflow YAML definition |
list_run_logs |
List recent workflow executions |
publish_artifact |
Publish evidence (screenshots, reports) from a session |
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 |
press_key |
Send keyboard keys |
scroll |
Scroll the page |
extract |
Extract text from element |
screenshot |
Capture page screenshot (pass path to write a PNG file instead of returning image bytes) |
select_option |
Select dropdown option |
fill |
Fill input value (React-compatible) |
wait |
Wait for element or delay |
exists |
Check if element exists |
extract_all |
Extract all matching elements |
extract_map |
Extract structured data from repeated elements |
scroll_into_view |
Scroll element into viewport |
hover |
Hover over element |
inject_css |
Inject CSS into the page (blur/hide elements before a screenshot) |
evaluate |
Execute JavaScript in browser |
browser_batch |
Run a sequence of browser actions in one call |
set_basic_auth |
Set HTTP Basic Auth credentials for the connected tab |
clear_basic_auth |
Clear stored HTTP Basic Auth credentials |
REST API
JSON endpoints for external integrations. The same workflows are available via MCP locally and via REST remotely.
# 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 for agentic workflows. Step types by family:
Step Types
| Family | Steps |
|---|---|
browser.* |
navigate, click, type, fill, extract, extractAll, extractMap, snapshot, screenshot, wait, exists, hover, key, scroll, scrollIntoView, select_option, injectCSS, injectJS |
git.* |
createPR, getPR, listPRs, getIssue, listIssues |
issues.* |
create, get, search, comment, attach, transition |
llm.* |
classify, decide, generate |
control.* |
if, foreach, retry, stop |
shell / terminal |
shell.run, terminal.open, terminal.run |
data.* |
first, get |
workflow.call |
Call another workflow with parameters |
LLM steps work with Ollama (local), OpenAI, and Anthropic.
Example
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:
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
sidebutton install github.com
sidebutton install atlassian.net
Open registry with published packs for popular web apps. Build and share packs for any domain.
Chrome Extension
Install the SideButton Chrome Extension from the Chrome Web Store.
- 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:
- Navigate to any website
- Click the SideButton extension icon
- 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 multi-agent orchestration β from workflow execution to knowledge injection.
Architecture
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β @sidebutton/server β
β β
β βββββββββββββββββββββββ ββββββββββββββββββββββββββββββββββββββββββββ β
β β stdio Transport β β Fastify HTTP + WebSocket (port 9876) β β
β β βββββββββββββββββ β β ββββββββββββββββββββββββββββββββββββ β β
β β stdin β JSON-RPC β β GET / β Dashboard (Svelte) β β
β β stdout β JSON-RPC β β GET /ws β Chrome Extension WS β β
β β (Claude Desktop) β β POST /mcp β MCP JSON-RPC (SSE) β β
β ββββββββββββ¬βββββββββββ β GET /api/* β REST API β β
β β ββββββββββββββββββββββββ¬ββββββββββββββββββββ β
β β β β
β ββββββββββββββββββββ¬βββββββββββββββββββ β
β βΌ β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
β β @sidebutton/core β β
β β β β
β β - Workflow types & parser (YAML) β β
β β - Step executors (YAML step types) β β
β β - Variable interpolation β β
β β - Execution context & events β β
β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ β
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β² β² β² β²
β stdio β WebSocket β HTTP POST β REST
βΌ βΌ βΌ βΌ
ββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββ
βClaude Desktopβ β Chrome Extensionβ β Claude Code β β Mobile App β
β (MCP stdio) β β (Browser Auto) β β (MCP SSE) β β (REST Client) β
ββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββ βββββββββββββββββββββ
Project Structure
sidebutton/
βββ packages/
β βββ core/ # @sidebutton/core β workflow engine
β β βββ src/
β β βββ types.ts # Workflow types
β β βββ parser.ts # YAML loader
β β βββ executor.ts # Workflow runner
β β βββ steps/ # Step implementations
β βββ server/ # @sidebutton/server β MCP + HTTP + CLI
β β βββ bin/ # CLI entry point
β β βββ src/
β β βββ server.ts # Fastify HTTP server
β β βββ stdio-mode.ts # stdio transport entry point
β β βββ extension.ts # WebSocket client
β β βββ mcp/ # MCP handlers
β β β βββ handler.ts # MCP JSON-RPC logic
β β β βββ stdio.ts # stdio transport adapter
β β β βββ tools.ts # Tool definitions
β β βββ cli.ts # Commander CLI
β βββ dashboard/ # Svelte web UI
β βββ src/
β βββ App.svelte
β βββ lib/
βββ extension/ # Chrome extension
βββ workflows/ # Public workflow library
βββ actions/ # User-created workflows
βββ skills/ # Installed skill packs
βββ run_logs/ # Execution history
Environment Variables
| Variable | Required For | Description |
|---|---|---|
OPENAI_API_KEY |
llm.* steps |
OpenAI API key for LLM workflows |
ANTHROPIC_API_KEY |
llm.* steps |
Anthropic API key (alternative) |
Development
pnpm install # Install dependencies
pnpm build # Build all packages
pnpm start # Start server
pnpm cli list # List workflows
pnpm cli status # Check status
Watch Mode
pnpm dev # Full dev mode (all packages)
pnpm dev:server # Server with auto-restart on :9876
pnpm dev:dashboard # Dashboard watch build
pnpm dev:core # Core library watch build
Platform Automation Disclaimer
SideButton is a general-purpose browser automation framework. When automating third-party platforms:
- Review Terms of Service: Many platforms prohibit or restrict automation. You are responsible for complying with the terms of any platform you automate.
- Account Risk: Automation may result in account restrictions or suspension on some platforms.
- Use Responsibly: Only automate actions you would perform manually. Respect rate limits and platform guidelines.
The authors do not endorse or encourage violations of third-party terms of service.
License
This project uses mixed licensing β see LICENSING.md:
- Engine, server, CLI, dashboard β Apache-2.0
- Browser extension β FSL-1.1-Apache-2.0 (converts to Apache-2.0 on 2029-03-15)
Installation
SideButton MCP Server zu deinem Client hinzufΓΌgen. WΓ€hl den, den du nutzt.
claude mcp add server -- npx -y @sidebutton/servercodex mcp add server -- npx -y @sidebutton/serveramp mcp add server -- npx -y @sidebutton/server{
"mcpServers": {
"server": {
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"server": {
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"server","command":"npx","args":["-y","@sidebutton/server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"server": {
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"server": {
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"server": {
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@sidebutton/server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"server": {
"command": {
"path": "npx",
"args": [
"-y",
"@sidebutton/server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @sidebutton/serverRun `goose configure`, choose **Add Extension β Command-line Extension**, and paste this command.
Score
39 / 100
UnvollstΓ€ndig
- Dokumentation25/25
- Pflege19/25
- Vertrauen16/20
- Funktionsumfang0/15
- Installation12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed Apache-2.0
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Versionsverlauf
| Versionen | VerΓΆffentlicht |
|---|---|
| 1.5.2Aktuell | 27. Juli 2026 |
| 1.1.1 | 16. Apr. 2026 |