OpenTabs: MCP Server with 100+ Plugins for Browser-Based AI Tool Access

OpenTabs is an MCP server paired with a Chrome extension that provides access to web applications through their internal APIs rather than public APIs. The system includes 100+ plugins exposing approximately 2,000 tools.
How It Works
The Chrome extension injects plugin adapters into matching browser tabs. The MCP server discovers these plugins at runtime and exposes their tools over Streamable HTTP. This approach allows AI agents to call functions like slack_send_message that hit the same endpoints the web app's frontend uses, running within the browser with the user's existing session.
Key Features
- No API keys or OAuth flows required
- No screenshots or DOM scraping
- Works with Claude Code, Cursor, Windsurf, or any MCP client
- Includes a plugin SDK for building new plugins
Setup and Usage
Install via npm: npm install -g @opentabs-dev/cli
Start the server: opentabs start
Plugin Development
The SDK includes a skill that improves with each plugin built—patterns, gotchas, and API discoveries get written back into it. According to the developer, you can point your AI at any website and it builds a plugin in minutes.
Current Status
The developer uses 5-6 plugins daily (Slack, GitHub, Discord, Todoist, Robinhood) and considers those solid. There are 100+ total plugins, but most need more testing. The developer requests help: if you try a plugin and something's broken, point your AI at it and open a PR.
📖 Read the full source: r/ClaudeAI
👀 See Also

AGENTS-COLLECTION: 129 Claude Code Agents Organized in One Repository
A developer has compiled 129 Claude Code agents into a single repository in ~/.claude/agents/ format, ready for installation with a simple copy command. The collection includes the full agency-agents system with 68 personality-driven agents across multiple disciplines, plus additional agents for multi-agent team workflows.

Local Behavioral Monitoring System with MCP Pipeline and Claude Code
A developer built a local behavioral monitoring system called BRAIN that tracks app switches, file operations, and dev sessions, piping data through a custom MCP server to Claude Code. The system runs 100% locally with zero cloud dependency.

Building a Local Open-Source AI Workspace with Rust and Tauri
Explore a fully local, open-source AI workspace built using Rust, Tauri, and sqlite-vec, without a Python backend.

Approach to Self-Improving Memory in Local AI Agents
A developer shares their approach to persistent memory for local AI agents using markdown files as source of truth, episode scoring with confidence-based rules, and trust escalation based on approval patterns.