secure-browser-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@secure-browser-mcpGo to my bank's login page and fill the stored password secret into the password field."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
secure-browser-mcp
An MCP server that fills secrets into a browser without showing them to the agent.
The agent sees secret references, not secret values. Secrets live in Turnkey Secrets. The server exports a secret, decrypts it in its own memory, and types it into the page over CDP. The value never enters the conversation, the transcript, or the model context.
It covers the secrets that cannot be proxied through an API: passwords, card numbers, and SSNs typed into web forms.
Status: scaffold. The interfaces, tool surface, and security boundaries are in place. Most handlers return not_implemented. See docs/DESIGN.md for the full design and docs/THREAT-MODEL.md for what this does and does not defend against.
How it works
The agent calls
list_secret_refsand gets ids, names, and destination bindings. No values.The agent drives the browser with
navigate,snapshot,click, andtype_text.The agent calls
fill_secret(secret_id, element_uid).The server checks the page against the secret's destination binding. The binding is set at import time through Turnkey static properties and cannot be changed.
The server exports the secret from Turnkey (ephemeral P-256 key, HPKE), types it into the field over CDP, and drops the value.
Every tool result passes through a redaction layer before it reaches the agent. Snapshots, network logs, and screenshots never echo a filled value.
There is no evaluate_script tool. That is a security decision, not a gap.
Related MCP server: Cloudflare Playwright MCP
Quickstart
bun install
bun run typecheck
bun run dev # starts the MCP server on stdio (mock secrets backend)Inspect the tool surface:
bunx @modelcontextprotocol/inspector bun src/index.tsThe server uses an in-memory mock backend until Turnkey credentials are configured. The real backend is a thin adapter over @turnkey/sdk-server (importSecret / exportSecret / getSecrets, merged in tkhq/sdk#1479).
Dependencies on unpublished SDK code
The Secrets API methods are on tkhq/sdk main but not on npm yet. The vendor/ directory holds tarballs packed from a local ../sdk checkout, pinned through overrides in package.json. Remove the vendor tarballs and the overrides once @turnkey/sdk-server@8.3.0 ships.
To regenerate the tarballs:
cd ../sdk && pnpm install && pnpm turbo build --filter=@turnkey/sdk-server --filter=@turnkey/crypto
cd packages/<pkg> && pnpm pack --out ../../../secure-browser-mcp/vendor/turnkey-<pkg>.tgzLayout
Path | What it holds |
| Secret refs, the |
| Browser ownership and CDP secret injection |
| The scrub layer every tool result passes through |
| One file per MCP tool |
| Design and threat model |
This server cannot be installed
Maintenance
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
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to control a browser through a set of tools, allowing them to perform web automation tasks like navigation, typing, clicking, and taking screenshots.
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to control a browser through a set of tools, allowing them to perform web automation tasks like navigation, typing, clicking, and taking screenshots.
- FlicenseBqualityDmaintenanceEnables secure retrieval of credentials from 1Password vaults for use by AI agents, supporting integration with browser automation for automated login.1
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to control a browser through a set of tools, allowing them to perform web automation tasks like navigation, typing, clicking, and taking screenshots.
Related MCP Connectors
AI-powered browser automation — navigate, click, fill forms, and extract data from any website.
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
Issue, rotate and revoke scoped API-key passes for 25+ providers — the agent never sees a real key
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/tkhq/secure-browser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server