Use Case

Browser infrastructure
for AI agents

Give your agent real browser access with MCP, REST, or Playwright. Sub-100ms cold starts. Stealth by default. Built for the agentic web.

MCP + A2A Native

First-class Model Context Protocol server. Connect from Claude, GPT, LangChain, CrewAI, or any A2A-compatible agent framework with a single config.

Humanized Actions

AI-friendly API tools: navigate by text, click by description, fill forms by label. Your agent describes what it wants — we handle the selectors.

Sub-100ms Cold Start

Your agent gets a live browser before the next API call fires. No waiting, no queuing — purpose-built for real-time agentic workflows.

Stealth by Default

Every session gets advanced anti-detection: custom fingerprints, realistic TLS, human-like behavior patterns. No configuration needed.

Content Extraction

Extract page content as clean markdown with metadata. Perfect for RAG pipelines, knowledge bases, and data gathering agents.

Session Persistence

Maintain browser state across multiple agent steps. Cookies, localStorage, and auth sessions persist — no re-login between actions.

Connect your agent in seconds

Use the Humanized REST tools (the same primitive operations MCP clients call) to open a remote session, navigate, and extract markdown.

agent.ts
const apiKey = process.env.BROWSERCITY_API_KEY!;const opts = { method: "POST", headers: { Authorization: `Bearer ${apiKey}` } };const post = (path: string, body: unknown) =>  fetch("https://api.browser.city" + path, { ...opts, body: JSON.stringify(body) }).then((r) => r.json());const open = await post("/v1/do/open", { browser: "chromium" });const sessionId = open.result;await post("/v1/do/navigate", { sessionId, url: "https://example.com" });const md = await post("/v1/do/markdown", { sessionId });console.log(md.result);

Works with every agent framework

Claude MCP
OpenAI Agents
LangChain
Browser Use
CrewAI
AutoGen
Semantic Kernel
Custom Agents
[ 06 / 06 ] — Get Started

Start building in under a minute

Free tier. No credit card. Full stealth from day one.