Other formats agents might prefer:
markdownjsonllms.txt

Agent? You probably want markdown or json, or Pod over MCP.

SideButton MCP Server MCP Server

Open-source MCP server with browser automation and knowledge packs for AI agents

Publisher claimed. No tool list reported, and Pod has not connected to this server.

Status

Pod has not dialled SideButton MCP Server yet, so everything on this page is what its publisher reported rather than what we observed. Registries describe servers; they do not connect to them. Until a check runs, treat the tool list below as a claim.

Connect

Published as @sidebutton/server on npm. Runs locally.

Known issues

11 problems reported by people outside the maintainer team. Issues filed by the project's own owners, members and collaborators are excluded — those are release checklists and internal refactors, not things that will go wrong for you. Showing 8.

Most discussed

Bug: Run ID collisions when workflows execute in same second

Description

Run IDs are generated using second-precision timestamps. Two workflows completing in the same second produce identical IDs, causing the second run log to overwrite the first.

Current Behavior

const timestamp = new Date().toISOString();
const runId = `${workflowId}_${timestamp.replace(/[:.]/g, '').slice(0, 15)}`;

Format: workflow_id_20260131T173045 — no sub-second component.

Expected Behavior

Each run should have a globally unique ID regardless of ti

Read the thread · 2026-01-31 · closed · 3 comments

Handle native browser dialogs (beforeunload, alert, confirm, prompt)

Problem

When SideButton's browser automation sends a Page.navigate CDP command to a page with a beforeunload handler (e.g., LinkedIn messaging with unsaved draft text), the browser shows a native "Leave site?" dialog. This dialog blocks ALL subsequent CDP commands indefinitely, causing every tool call to time out.

Screenshot of the blocking dialog:

The dialog shows "Leave site? Changes you made may not be saved." with Cancel/Leave buttons. While this dialog is open, snapshot,

Read the thread · 2026-02-28 · open · 1 comment

Native