The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Feedthrough listing page.
Debug with AI — from inside your app.
Feedthrough injects a lightweight debug bridge into any running web page, then exposes everything — DOM state, console logs, network requests, and user interactions — as MCP tools. Any MCP-compatible AI agent can inspect and drive the page conversationally, in real time.
Many physics and chemistry experiments run inside a sealed vacuum chamber, with all the air pumped out so nothing contaminates the experiment. The catch: you still need to control instruments inside the chamber and read their measurements, and the smallest air leak ruins the run. A feedthrough is the part that solves this — a specially engineered connector that carries electrical signals through the chamber wall while keeping the vacuum perfectly intact. You can't reach inside, but the feedthrough lets you observe and control what's happening in there anyway.
The parallel is exact: Feedthrough extracts runtime debug data from inside a running web app without disturbing it, and sends control signals back in — clicks, keystrokes, DOM queries — without breaking the execution environment.
Every other browser MCP tool is an external observer — it controls the browser from outside via Puppeteer or CDP and only works in Chrome. Feedthrough is an embedded agent. It runs inside the page, so it sees:
| Package | Description |
|---|---|
@feedthrough/core | In-browser bridge — intercepts console, fetch, XHR; handles commands |
@feedthrough/mcp | MCP server — bridges any MCP client to the browser via WebSocket |
@feedthrough/cypress | Cypress adapter — auto-injects the bridge before each test page load |
@feedthrough/playwright | Playwright adapter — injects the bridge via page.addInitScript() |
@feedthrough/vite | Vite plugin for apps with a static index.html |
@feedthrough/webpack | Webpack plugin — adds bridge as a global entry point |
@feedthrough/nextjs | Next.js adapter — wraps next.config.ts with withFeedthrough() |
@feedthrough/nuxt | Nuxt 3 module |
@feedthrough/sveltekit | SvelteKit adapter — injects via the handle hook |
@feedthrough/remix | Remix adapter — injects via a Vite dev server middleware |
| Framework | Adapter | Notes |
|---|---|---|
| Vite + React / Vue / Solid / Preact | @feedthrough/vite | Static index.html — plugin uses transformIndexHtml |
| Next.js | @feedthrough/nextjs | Wraps the webpack config; dev only |
| Nuxt 3 | @feedthrough/nuxt | Registers as a Nuxt module; dev only |
| SvelteKit | @feedthrough/sveltekit | handle hook with transformPageChunk; dev only |
| Remix | @feedthrough/remix | Vite dev server middleware; dev only |
| Webpack apps | @feedthrough/webpack | Global entry point; guards against production mode |
| Cypress | @feedthrough/cypress | window:before:load hook |
| Playwright | @feedthrough/playwright | page.addInitScript() |
The server listens for browser connections on ws://127.0.0.1:8765 and exposes MCP tools on
stdio. Override the port with FEEDTHROUGH_PORT=9000. If the port is already taken, the server
steps up to the next free one rather than refusing to start — see
Running several sessions at once.
Vite + React / Vue / Solid / Preact:
Next.js:
Nuxt 3:
SvelteKit:
Remix:
Webpack:
Cypress:
Playwright:
Or manually (any bundler):
Once the bridge connects you'll see [feedthrough] tab connected in the MCP server output.
For the simplest experience, keep a single tab open. Multiple tabs can connect at the same time
and commands are routed to the most recently active one, but a single tab avoids any ambiguity.
Then ask your AI agent:
| Tool | Description |
|---|---|
get_instructions() | Usage guide — recommended workflow, tool ordering, and selector tips |
query_dom(selector) | All elements matching a CSS selector |
inspect_element(selector, properties?) | Tag, attributes, full bounding rect + inViewport, ancestor path, curated computed styles, overflow info (clipped/overflowing content), clipped-by-ancestor info, effective visibility (visible + hiddenReason, accounting for ancestors), occlusion (hittable + occludedBy), accessibility (a11y: role, name, states), pseudo ::before/::after content, live form state; properties reads extra CSS props by name |
get_html(selector) | Raw outerHTML of a region (capped at 50 KB) |
get_console_logs(limit?, levels?, match?, since?) | Console output (all methods) plus uncaught errors & promise rejections; filter by levels, match, or since timestamp |
get_network_requests(filter?, since?) | Captured fetch + XHR — URL, method, status, duration, headers, request/response bodies (10 KB cap); narrow by filter or since |
get_page_info() | URL, title, readyState, viewport size, scroll position, user agent, and which bridge this page is connected to |
connection_status() | Connected tabs and which one is active, plus this server's name, version, and bound port |
click(selector) | Click an element via native click() (fires click + default activation, not the pointer sequence) |
fill(selector, value) | Set an input/textarea/select value (fires input + change, not keystrokes) |
hover(selector) | Fire mouseover/mouseenter to mount hover UI (JS handlers, not CSS :hover) |
press_key(selector, key) | Dispatch a key press — Enter, Escape, Tab, arrow keys, or a character |
set_style(selector, properties) | Preview a visual fix — set inline CSS live (not saved to source) |
set_attribute(selector, name, value) | Preview an attribute change — toggle disabled, swap a class, set aria-* (null removes) |
set_text(selector, text) | Preview wording/label changes — replace an element's text |
reset_overrides() | Undo every live set_style / set_attribute / set_text change |
Live edit is a preview, not a save. set_style / set_attribute / set_text mutate the
running DOM so the agent can show you a fix without a rebuild. They are not written to your
source and reset on reload/HMR. The loop: the agent previews live, you confirm, then it edits the
actual source to make it stick. Changes a framework owns (text, controlled attributes) may be
overwritten on the next render — the tool result flags this so the agent can tell you.
examples/react-app is a small React app with three deliberate bugs — a good sandbox for
trying out the diagnostic workflow:
Connect an AI agent and ask it to find what's wrong. The three bugs are all invisible from the
UI but findable in under a minute via get_console_logs, get_network_requests, and query_dom.
Two AI agent sessions on one machine each start their own Feedthrough MCP server, and only one of them can have port 8765. That is handled, but it is worth knowing how.
The server moves, and tells you where it went. On a busy port it steps up (8766, 8767, …)
instead of failing. connection_status() reports the port it actually bound, and the agent
passes that to the dev server it starts:
Every build-tool adapter — vite, webpack, nextjs, nuxt, sveltekit, remix — reads FEEDTHROUGH_PORT
(or FEEDTHROUGH_URL for a full ws:// URL) in Node at config-load time and bakes the result into
the injected bridge. So a committed, argument-free feedthrough() pairs correctly in any session,
with no file edits. An explicit serverUrl option always wins over the environment.
If you start the dev server yourself, the environment is unset and the page falls back to 8765, which may be another session's server. Either export the port before starting it, or pin one per project (below).
Pinning a port per project. For a project you always work on in its own session, pin the port
on both ends and neither has to think about it. In .mcp.json:
and in the app's config, feedthrough({ serverUrl: "ws://localhost:8770" }).
Telling bridges apart. Each server picks a readable name at startup (quiet-olive-heron) and
sends it to every page that connects. The page logs one line to the browser console, stores it on
window.__feedthrough.server, and returns it from get_page_info(). The agent's own name comes
from connection_status(). Two different names mean the tab is paired with another session's
server — so "am I driving the right app?" is one call, not something you notice by watching the
wrong window change.
connection_status() — confirm the bridge is connected before anything elseget_console_logs() — errors and app output often identify the root cause immediatelyget_network_requests() — look for failed fetches, wrong URLs, or missing callsquery_dom(selector) — find elements and check what's renderedinspect_element(selector) — deep-dive on a specific elementclick() / fill() — interact, then re-check logs and networkAdd this to whatever project-memory file your AI agent reads — CLAUDE.md for Claude Code,
.cursor/rules/*.md for Cursor, and so on — to prime it with the right workflow:
For one-off sessions with any MCP client:
v1 is local-only. Two guards enforce this:
127.0.0.1, so it is not reachable
from other machines on the network.Origin header.
Loopback origins (localhost, 127.0.0.1, ::1) are always accepted, as is any host ending
with an allowed suffix (default .test, so local dev domains like Laravel Valet's myapp.test
connect out of the box). Override the suffix list with FEEDTHROUGH_ALLOWED_HOST_SUFFIXES
(comma-separated; replaces the default — set it empty for loopback-only). Any other origin is
rejected. A .test origin can only be presented by a page actually served from a .test host,
which resolves locally, so this widens which local origins connect, not network reach.Captured network requests include request and response bodies and headers, including
Authorization, Cookie, and any other headers your app sends. That's intentional — debugging
auth and session flows needs them. But the data does leave the page over the local WebSocket,
flows through the MCP server, and reaches whichever AI agent you've connected. If that agent is
cloud-backed, sensitive values reach the provider. Run Feedthrough only on dev machines and dev
data. Do not inject @feedthrough/core into production builds.
Requires Node.js ≥ 22 and pnpm.
Packages are versioned independently — bump only the package(s) you actually changed and leave
the rest alone. Publishing to npm is handled by CI: the Publish to npm workflow runs on every
published GitHub Release and publishes only the packages whose name@version isn't on npm yet,
skipping the ones already published (via OIDC trusted publishing, no tokens).
To cut a release:
The workflow builds all packages and publishes only the newly bumped ones. It also publishes
@feedthrough/mcp to the official MCP registry
(io.github.feedthrough/feedthrough) via GitHub OIDC whenever the registry is missing the current
version, so a failed registry publish can be retried by re-running the workflow (Actions tab,
"Run workflow") with no version bump. Mark a release as a pre-release to skip publishing.
MIT — see LICENSE.