Skip to main content
Glama

Steel MCP Server

License: MIT Node

Give Claude, Cursor, VS Code, or another MCP client a Steel-managed Chromium browser. Use Steel to read pages that block a plain fetch, take screenshots, or work through interactive sites by clicking, typing, and filling forms.

Unlike v1's screenshot-and-numbered-box loop, v2 reads pages as markdown or accessibility trees, shows small screenshots through MCP image blocks without using pixels for interaction, and makes browser sessions explicit.

Status: 2.0.0-rc.8. Run the server locally over stdio, or run the hosted endpoint yourself — it is in the package and documented below. mcp.steel.dev is not live yet.

Example prompts

Ask

What happens

"Read this page and summarize the pricing table."

One steel_scrape. No browser session, nothing to release

"Find and compare prices for this product across these three shops."

Three stateless reads, or a session where a shop needs JavaScript to render

"Sign in to my account and check the total on last month's invoice."

A session, a snapshot, and a handoff to you at the login wall — the server never guesses at a password

"Fill out this application form with the details from my CV."

The agent fills ordinary fields, then steel_session_handoff lets you choose the CV locally in the same browser

"Screenshot the top of this article for a slide."

One steel_screenshot, shown inline when small enough and always linked for download

"Show me what happened in my last browser session."

steel_session_diagnostics reads the latest released session. No new browser is started

"Replay my last finished browser session."

steel_session_replay returns the latest finished session's Steel dashboard link. No browser is started

Related MCP server: Puppeteer MCP Server

What it exposes

The default browse profile is sixteen tools:

Tool

What it does

steel_scrape

Read a budgeted page plus bounded links/metadata. Starts no browser session

steel_screenshot

Capture a URL for a person or a live session for model-visible visual verification; URL captures support proxies

steel_pdf

Render a page to PDF and return a link; supports proxies

steel_session_create

Start a browser session you can interact with

steel_session_release

Shut it down and stop the meter

steel_navigate

Point a session at a URL

steel_snapshot

Read the page as an accessibility tree with @eN references

steel_find

Locate elements by text, safe regex, or role without reading the whole page

steel_act

Click, type, fill a form, select, hover, scroll, press a key, go back, dismiss overlays

steel_wait_for

Wait for named text, a selector, or a URL

steel_session_diagnostics

Read activity or rediscover this credential's live handles without starting a browser

steel_session_handoff

Pause while you take exclusive control of the same browser, then return it to the agent

steel_session_replay

On an explicit watch/replay request, return a finished session's safe dashboard link

steel_batch

Run known reversible steps in one call; hand off before login, payment or final confirmation

steel_session_options

Plan non-default setup and safely discover saved profile IDs or managed-login namespaces

steel_session_live_view

Feeds the inline viewer its connection details. Hosts hide it from the model

Set STEEL_PROFILE=scrape to expose only the three stateless read tools. They never start a browser session. The default browse profile adds the thirteen session tools above.

Saved identity and non-default sessions

Call steel_session_options with an absolute target URL, a read, interact, or account goal, and only the needs the task explicitly requires. Plain reads still recommend steel_scrape. Non-default plans return a short-lived signed configuration for steel_session_create; the token is bound to this Steel credential and expires after ten minutes. When a request says "my profile", "saved login", or "Steel credentials", discover the account options first; never guess a profile UUID or credential namespace.

{
  "url": "https://example.com/account",
  "goal": "account",
  "needs": ["persist_profile", "location"],
  "country": "DE"
}

The account catalog exposes only profile UUID/status/timestamps and exact-origin credential namespace/timestamps. Stored values, cookies, fingerprints, proxy configuration, usernames, passwords, and TOTP secrets never enter model context. Select a READY profile by UUID; names are not guessed. Loading a profile is read-only unless persist_profile was explicitly planned. With persistence, Steel creates or updates the profile on release; it may be UPLOADING before it becomes READY. One existing profile cannot have two persistent writers through this MCP at once. Managed login uses the returned exact-origin namespace and may auto-submit a matching form.

STEEL_PROFILE=browse|scrape selects this server's tool preset and is unrelated to saved browser profiles. Profile discovery, persistence, credentials, proxies, and CAPTCHA assistance are Steel Cloud features; self-hosted deployments return a named unsupported-capability result.

Watching, and taking over

On a host that supports MCP Apps — Claude among them — steel_session_create renders the running browser inline in the conversation. Frames are painted to a canvas from the session's own CDP screencast. Take control acquires a renewable exclusive lease before clicks, typing or scrolling go back to the page, so the agent and a person cannot drive at the same time. Hand back returns ownership. During a steel_session_handoff, accept the pending handoff prompt afterward; the agent then re-reads the page before continuing. Chat hosts size an inline view for a card rather than a browser, so the view asks for the height its page needs and offers Full screen — on a host that grants it; the control removes itself on one that does not.

steel_session_handoff invokes that flow for sensitive information, review, manual writing, local files, or whenever you ask to take over. Login walls and CAPTCHAs can invoke it automatically. The tool answers input_required, waits for hand-back, and verifies the current page before the agent continues. Clients with URL elicitation open Steel's external player when no inline app is available.

When a remote file input opens while you control the inline viewer, Choose local file opens a trusted local picker. After confirmation, up to 5 MB travels over the session-scoped browser socket directly into that page. The model and MCP server receive neither the local path nor the file bytes, and the file is not staged in Steel's persistent Files API. A client that cannot render the inline viewer reports local upload as unavailable instead of pretending it can read your machine.

For a browser that has already finished, explicitly ask to watch or replay it and pass its Steel dashboard UUID to steel_session_replay, or omit the UUID to select the latest released session. This release returns a sanitized Steel dashboard link. Inline finished-session playback is disabled until its browser asset can be hosted immutably without inflating the MCP Apps payload.

Quick start

Claude for macOS or Windows

Build the desktop extension and open it — Claude installs it and prompts for your Steel API key. Nothing else to configure, and no Node install of your own is needed at runtime.

git clone https://github.com/steel-dev/steel-mcp-server.git
cd steel-mcp-server
npm install
npm run pack:mcpb
open "build/steel-mcp-$(node -p 'require("./package.json").version').mcpb"    # Windows: double-click it

When replacing an installed bundle, fully quit and reopen Claude after the installer finishes, then start a new conversation so Claude reads the new tool catalog instead of reusing an older one.

Steel Cloud

You need Node.js 20 or newer and a Steel API key. It is not published to npm yet, so install it from source:

git clone https://github.com/steel-dev/steel-mcp-server.git
cd steel-mcp-server
npm install

npm install also builds the server. To use it with Claude Desktop on macOS, add this to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "steel": {
      "command": "node",
      "args": ["/absolute/path/to/steel-mcp-server/dist/stdio.js"],
      "env": {
        "STEEL_API_KEY": "<your-steel-api-key>"
      }
    }
  }
}

Or with Claude Code:

claude mcp add steel -e STEEL_API_KEY=your-steel-api-key -- node "$PWD/dist/stdio.js"

Self-hosted steel-browser

Run the steel-browser image, then point the server at it. No API key is needed or sent:

{
  "mcpServers": {
    "steel": {
      "command": "node",
      "args": ["/absolute/path/to/steel-mcp-server/dist/stdio.js"],
      "env": {
        "STEEL_LOCAL": "true"
      }
    }
  }
}

For Claude Code, run this from the cloned steel-mcp-server directory:

claude mcp add steel -e STEEL_LOCAL=true -- node "$PWD/dist/stdio.js"

Self-hosted Steel runs one browser session at a time. It does not support Steel-managed proxies, browser profiles, managed credentials, or CAPTCHA solving. The server returns a specific explanation if a tool requests one of those cloud-only features.

Configuration

Variable

Default

Meaning

STEEL_API_KEY

Required for Steel Cloud. Never sent to a self-hosted deployment

STEEL_LOCAL

false

true drives a local steel-browser and waives the API key

STEEL_BASE_URL

https://api.steel.dev

Steel REST base URL. A trailing /v1 is fine either way

STEEL_PROFILE

browse

scrape or browse

STEEL_SESSION_TIMEOUT_MS

900000

Default immutable lifetime. A create request may choose another value up to 24 hours and the account maximum

STEEL_INACTIVITY_TIMEOUT_MS

600000

Idle release. Supports a normal handoff/continuation window but may retain an abandoned browser for about 10 minutes

STEEL_MAX_SESSIONS

10

Concurrent sessions this server will hold

STEEL_CONNECT_URL

wss://connect.steel.dev

CDP endpoint, derived from the base URL when self-hosted

Logs are structured JSON on stderr; stdout carries nothing but JSON-RPC.

Session continuity is bounded by both inactivity and immutable expires_at. A visible viewer alone does not reserve a session. Explicit handoff suspends local idle reclamation only until hard expiry, and real human browser input resets Steel's inactivity clock. Release finished sessions promptly.

Running the hosted endpoint

The hosted entrypoint needs two packages a default install deliberately leaves out, so that a desktop or npx user never carries the hosted stack:

npm install ioredis @modelcontextprotocol/node
# and, only if you want OTLP tracing:
npm install @opentelemetry/sdk-node @opentelemetry/exporter-trace-otlp-http

They are declared as optional peerDependencies. A source checkout already has all four, and the Docker image installs them itself.

node dist/hosted.js (or npm run start:hosted) serves the same tools over Streamable HTTP at POST /mcp. Every caller brings their own Steel key, as a Authorization: Bearer header or an ?apiKey= query parameter for hosts that cannot set headers; a handle minted by one request is usable only by the credential that minted it. GET /healthz answers a load-balancer probe without consulting the Host allowlist. GET and DELETE on /mcp answer 405, as the 2026-07-28 spec requires.

Variable

Default

Meaning

STEEL_ALLOWED_HOSTS

Required. Comma-separated hostnames this endpoint answers on. Without it, DNS rebinding has nothing to stop it, so the server refuses to start

STEEL_ALLOWED_ORIGINS

Comma-separated browser origins allowed to call it. Empty rejects every request that carries an Origin; requests without one still pass

PORT

8080

Port to bind. 0 asks the OS for a free one

HOST

0.0.0.0

Address to bind

REDIS_URL

Shares handle records between replicas, so any replica can serve a handle another minted. Without it, records stay in the process — correct for exactly one replica

REDIS_KEY_PREFIX

steel-mcp

Key namespace, so one store can hold more than one deployment

STEEL_REQUEST_STATE_SECRET

per-process

HMAC key for human-in-the-loop handoff state. Required with REDIS_URL, and identical on every replica: without it a retried handoff lands on a replica that cannot verify state another one minted, after the person has already signed in. Generate with openssl rand -base64 32

OTEL_EXPORTER_OTLP_ENDPOINT

Any standard OTEL_* variable turns on OTLP tracing; OTEL_SERVICE_NAME defaults to steel-mcp. Unset means no exporter is loaded at all

The server never holds a Steel key of its own, so it is a self-hosted deployment's job to terminate TLS in front of it. Hosted logs are structured JSON on stdout, and credentials are redacted before anything reaches them.

docker-compose.yaml deploys that endpoint on any compose host, Coolify included:

STEEL_ALLOWED_HOSTS=mcp.example.com docker compose up -d --wait

It builds the image from this repository and names dist/hosted.js, because the image's own default command is the stdio server — which binds no port, so a platform that cannot override the command would deploy a container that never turns healthy. Point the proxy at port 8080 rather than whatever it defaults to, and set STEEL_ALLOWED_HOSTS to the public hostname the proxy forwards: any other Host is refused, while /healthz answers regardless so a probe on an IP still passes.

Connecting a client to it

Claude Code speaks Streamable HTTP itself:

claude mcp add steel --transport http https://mcp.example.com/mcp \
  --header "Authorization: Bearer $STEEL_API_KEY"

Claude Desktop does not. Its claude_desktop_config.json launches a program and speaks JSON-RPC over that program's stdin and stdout, so a remote endpoint needs a local bridge:

{
  "mcpServers": {
    "steel": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote@0.1.38",
        "https://mcp.example.com/mcp",
        "--header",
        "Authorization:${STEEL_AUTH_HEADER}"
      ],
      "env": { "STEEL_AUTH_HEADER": "Bearer <your-steel-api-key>" }
    }
  }
}

Two details in that snippet look like mistakes and are not. The header has no space after the colon, and the credential sits in env rather than inline, because some hosts do not escape a space inside args and mangle the value. Prefer a header over the ?apiKey= query parameter wherever the client can set one: the query form is there for clients that cannot, and any proxy in front of this server logs a query string before the server is reached.

How to get good results

Reach for steel_scrape first — most questions about a page end there, and it starts no billed session. Only create a session when you need to interact with the page.

To act on a page, read it with steel_snapshot. If you already know what you need, use steel_find with at least one of text, regex, or role; unsafe regular expressions are rejected. Both tools assign @eN references to elements the server can target. Elements without a reference cannot be clicked.

Actions do not return another full snapshot unless you ask for one. Instead, they report what changed. If an action says nothing changed, take a fresh snapshot instead of repeating it. steel_session_diagnostics accepts a live MCP session_id, a finished session UUID from the Steel dashboard, list_live: true to recover this credential's active handles, or no id to inspect the most recent released session. It never starts a browser. Direct clicks, scrolling and typing performed through the live viewer travel over CDP and may be absent from its agent-trace timeline; hidden counts refer only to routine browser network Request/Response logs.

To take over the browser, ask the agent to call steel_session_handoff; use Hand back when done, then accept the pending handoff prompt so the agent can continue. To watch a cloud browser outside an MCP Apps host, open the viewer_url returned by steel_session_create. Active sessions also appear in the Steel dashboard.

Page text is wrapped in an <untrusted-page-content> block. Treat it as data, not instructions. The server strips hidden content and other common prompt-injection carriers, but it cannot make an arbitrary website trustworthy.

Development

npm run build
npm run typecheck
npm run lint
npm test               # unit + integration
npm run budget         # tools/list byte budget per profile
npm run conformance    # MCP conformance suite
npm run test:browser   # runs the inline viewer in a real Chrome
npm run test:e2e       # starts, waits for and tears down the real-browser stack

See CLAUDE.md for the working rules. PLAN.md tracks the implementation, and RESEARCH.md records the evidence behind the design. RELEASING.md explains what ships from this one package — the desktop bundle, the npm package, the container image and the hosted service — and how a release is cut.

Troubleshooting

A site returns 403 or shows a challenge page. That is bot detection, not a bug. The error names the vendor and one thing to try next; change one thing at a time. steel_session_diagnostics shows what happened.

Managed proxies or CAPTCHA solving fail with a payment error. Those need a $10 verified paid balance on Launch; free credits do not count.

A @eN reference stopped working. The error says why — the page navigated, the node was removed, or the element changed role or accessible name — and what to call to recover.

A session seems to have vanished. Steel releases a session after ten minutes with no activity, and at the plan's hard time limit. Create a new one only if you need to interact again. To read the old activity, call steel_session_diagnostics with its dashboard UUID, or omit the id for the latest released session.

A click reports that nothing changed. It probably landed on something else. If an overlay is covering the target the error names it; run steel_act with dismiss_overlays, then retry.

The extension fails to start with a message about STEEL_API_KEY. The key never reached the server. Open the extension's settings in Claude and re-enter it; the field is write-only, so a blank one looks the same as a filled one.

"Concurrency limit reached" on steel_session_create. Your Steel plan allows fewer simultaneous browsers than are open. Sessions you forgot to release count — steel_session_release frees one immediately, and Steel reclaims idle sessions after ten minutes.

Tracing was requested but could not start. The desktop bundle deliberately ships without the OpenTelemetry exporter stack. The server logs this once and serves normally; install @opentelemetry/sdk-node and @opentelemetry/exporter-trace-otlp-http in a source checkout if you want traces.

Support

Open an issue at steel-dev/steel-mcp-server/issues — include the tool you called and the error text. For anything security-related, follow SECURITY.md instead of filing a public issue.

Privacy

The server holds no data of its own. It sends the URLs and page interactions a tool call names to Steel, which runs the browser, and returns what the page said. Page content passes through to your MCP client and is not stored, logged, or forwarded anywhere else; passwords and credentials are redacted before anything reaches a log. Nothing about your conversation is collected, and no telemetry exporter is loaded unless you configure one with a standard OTEL_* variable.

Steel's handling of the browser sessions it runs is covered by the Steel privacy policy.

Contributing

Contributions are welcome. This project practises TDD: write the failing test first. See CLAUDE.md for the full rules.

  1. Fork the repository

  2. Create a feature branch

  3. Submit a pull request with a clear description and the motivation

Disclaimer

Web pages can contain prompt injections, and filtering cannot remove every one. Review browser actions that can submit data, make purchases, or change an account. The threat model and current mitigations are documented in RESEARCH.md §7.

Install Server
A
license - permissive license
A
quality
A
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…

  • AI-powered browser automation — navigate, click, fill forms, and extract data from any website.

  • Automate cloud browsers to navigate websites, interact with elements, and extract structured data.…

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/steel-dev/steel-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server