Back to MCP Servers

Feedthrough

In-browser debug bridge that injects into your running web app, so an agent can read the DOM, console logs and network requests, and click/fill/inspect the page. Runs inside the page (not an external CDP driver), so it works in any browser and inside Cypress/Playwright runs.

browser-automationbrowseragent

Installation

npx -y feedthrough

Configuration

{
  "mcpServers": {
    "feedthrough": {
      "command": "npx",
      "args": ["-y", "feedthrough"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes
View source on GitHub