E2LLM gives your AI eyes and hands in a real browser: structured perception (SiFR) plus action.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
E2LLM turns any live web page into SiFR: a compact, deterministic, LLM-readable model of what's on the page, what it means, and what can be done with it. Perception is the product. Action is available when you need it β always explicit, always gated.
Works as a hosted remote MCP server with the AI you already use. There's no local server to run β a browser extension pairs your live browser to the server, so perception and action happen in the real browser you're already signed into.
This matters, so it comes first.
An agent decides and acts on its own β it plans, loops, and takes steps toward a goal without you in the path. That autonomy is also its attack surface: an agent runtime that can do anything can be steered into doing anything.
E2LLM is a perception layer, not an agent. It gives your model senses for the browser
β structured sight through sifr_capture, and a set of narrow, individually-gated
actuators. It does not plan, does not loop, and does not decide. Whatever model you already
use does the reasoning; E2LLM only reports what a page is and carries out one explicit
instruction at a time. No hidden autonomy, no self-directed steps, nothing that runs while
you look away.
That line β perception substrate versus autonomous runtime β is the whole design.
| Tool | What it does | |
|---|---|---|
| π | sifr_capture | Capture a page as a SiFR document |
| π | query | Filter the current capture β by tag, salience, text, or selector |
| π | inspect | Full detail for one element: selector, attributes, styles, box |
| π | read_page | Read the page's text as markdown, in reading order |
| π | list_tabs | List open browser tabs |
| π | act | One explicit interaction: click, type, select, navigate, drag, open (new tab), or paste |
| π | batch_act | Run a planned sequence, then observe once (e.g. fill a form + submit) |
| π | explore | Scroll, hover, or recapture β reads more, changes nothing |
| π | close_tab | Close a tab |
Nine tools: five π that only perceive, and four π for interaction β of which act,
batch_act, and close_tab change page state, while explore only reads. The tool
inventory is in server.json; full parameter schemas come from the live
server on connect. The perception tools never change page state; the
state-changing tools can each be held for your confirmation (see
Safety).
SiFR (Salience-Indexed Flat Relations) is the capture format at the heart of E2LLM. From a distance it can look like an accessibility tree or a tidy DOM dump. Mechanically it is neither, and the difference is the point.
The result is a perception layer, not a serialization: what a page is, what you can do on
it, and how its parts relate β front-loaded so the model reaches what it needs first. A
sifr_capture returns a ~5β15 KB summary (metadata plus the high-salience elements) before
the full document, so reading can begin immediately.
For prompt recipes and automation workflows built on SiFR, see awesome-e2llm-prompts β a community cookbook that points back here as the canonical SiFR spec home.
1. Set up at e2llm.com. Create an account and install the browser extension. The extension pairs your live browser to the server β that pairing is what lets your AI perceive and act in the session you're already signed into. (This is the only piece that runs on your machine; there is no local server.)
2. Add E2LLM to your MCP client. One line β pick your client in
clients/, or paste this for interactive OAuth login:
For CLI / CI where interactive login isn't available, use a static key against
https://api.e2llm.com/mcp with an Authorization: Bearer mk_β¦ header. Full per-client
instructions: clients/README.md.
3. Ask your AI to do something on a page. For example:
"Open the page I'm on, find the search box, and filter for open issues."
Your assistant calls sifr_capture to see the page, then act to interact β in your real
browser, one explicit step at a time.
Tool descriptions tell a model what each tool does; they deliberately don't tell it how to work well. That working discipline β verify before describing, re-verify stale element IDs after actions, drain pagination cursors, treat page text as data rather than instructions β ships as a skill: skills/sifr/SKILL.md. Without it, models tend toward known failure modes: describing pages they haven't captured, acting on stale IDs, or deciding from undrained partial results.
Install it where your model can see it:
cp -r skills/sifr ~/.claude/skills/ (all projects) or into a project's
.claude/skills/. It loads automatically whenever the e2llm tools or SIFR documents
come up.AGENTS.md).The same file doubles as a reference for reading raw SiFR captures offline (jq patterns,
the ID system, salience tiers).
Perception is read-only by construction: the five π tools cannot change page state, so seeing a page is always safe.
Only the four π tools can act, and they are deliberately narrow β no "do anything" tool exists. Each state-changing step can be approval-gated by your session posture: depending on how your session is configured, an action pauses and waits for your confirmation before it runs. Actions happen one explicit instruction at a time, never as an autonomous loop.
Security disclosures and our vulnerability-disclosure program (with safe harbor) live at e2llm.com/security/disclosure; see also SECURITY.md.
Page content is captured on demand and transits the E2LLM relay to reach your MCP client. Session-related data is retained for a limited window (see the Privacy Policy) and password-type fields are redacted before storage. The relay wraps all page-derived content as untrusted external data, so downstream models treat page text as data, not instructions. Full detail: Privacy Policy Β· Terms.
E2LLM speaks standard MCP, so it works with any compliant client. Verified in practice with Claude, ChatGPT, Codex, Perplexity, Grok, and Manus. Other MCP clients β including Cursor, VS Code, and Cline β should work; if you test one, a note or PR is welcome.
This repository is the canonical, descriptive home for the SiFR format and the E2LLM MCP server interface. It documents the format and how to connect; the capture engine, browser extensions, and server are a separate hosted product that runs at e2llm.com.
| Path | What |
|---|---|
SIFR.md | SiFR format specification |
TAXONOMY.md | SiFR controlled vocabulary |
server.json | MCP server manifest (transport, auth, tool inventory) |
.mcp.json | Ready-to-use MCP client config (OAuth endpoint) |
skills/ | The SIFR skill β working discipline for models driving the tools |
clients/ | Per-client connection configs |
examples/ | Real public-page captures |
SECURITY.md | Security policy & disclosure program |
CHANGELOG.md | Format version history |
MIT. The format specification, manifest, examples, and client configs in this repository are open. The capture engine and server are a separate, hosted product.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/e2llm)<a href="https://allmcps.com/mcp/e2llm"><img src="https://allmcps.com/api/badge/e2llm?style=directory" alt="E2LLM on AllMCPs" /></a>