Interact MCP: Faster Web Browsing for Claude Code with Persistent Chromium

Interact MCP is a Model Context Protocol implementation that enables faster web browsing for Claude Code and other MCP clients by maintaining a persistent Chromium browser in-process. The tool addresses performance limitations in existing solutions like Playwright MCP, which reportedly takes 2-5 seconds per browser action.
Performance Improvements
The key optimization comes from keeping the browser instance alive between calls. The first interaction takes approximately 3 seconds, but subsequent actions complete in 5-50 milliseconds, representing a 10-50x speed improvement over Playwright MCP's per-action latency.
Core Features
- Ref System: Instead of CSS selectors, you call
interact_snapshotto get element references like[textbox] "Email",[textbox] "Password",[button] "Sign In". You then interact using references likeinteract_click({ ref: "@e3" }). - Snapshot Diffing: Shows exactly what changed on the page after an action.
- Cookie Import: Import cookies from Chrome, Arc, or Brave browsers to test authenticated pages without manual login.
- 46 Total Tools: Includes form handling, screenshots, JavaScript evaluation, network capture, and responsive testing capabilities.
Technical Details
The browser automation architecture is ported from Garry Tan's gstack project and wrapped in the MCP protocol. The tool is MIT licensed and works with Claude Code, Cursor, or any MCP client. The GitHub repository is available at https://github.com/TacosyHorchata/interact-mcp.
This type of tool is particularly useful for developers testing user flows where multiple browser interactions are required, as the persistent connection eliminates the overhead of browser initialization for each action.
📖 Read the full source: r/ClaudeAI
👀 See Also

HomeClaw Plugin Connects Apple HomeKit to OpenClaw
HomeClaw is an OpenClaw plugin that connects Apple Home/HomeKit devices to OpenClaw. It requires an Apple Developer Account to build and run due to Apple HomeKit restrictions for notarized distributions.

Introducing Roam-Code CLI: A Faster, Deterministic Alternative for Code Exploration
Roam-Code CLI replaces Claude Code's explore phase with a faster, deterministic alternative that indexes codebases for improved efficiency.

Declawed: A Community-Driven OpenClaw Malware Scanner
Declawed is a new OpenClaw SKILL.md malware scanner focused on detecting arbitrary prompt injection, malicious content, and info stealers in ClawHub skills.

Doc Harness: A Claude Code Skill for Maintaining Project State Across Sessions
Doc Harness is a Claude Code skill that creates a lightweight documentation system with five structured files to help AI agents maintain project context across sessions. It addresses issues like context resets, forgotten rules, and the need to re-explain projects to new agents.