Use Case

Browser infrastructure
for AI agents

Give your agent real browser access via MCP, REST, or Playwright. Instant cold starts. Bulletproof 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 REST

HTTP browser actions for agents that need to open sessions, navigate, click, type, fill forms, and extract page content without running Playwright.

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-browse.ts
const actionUrl = (action: string) => `https://api.browser.city/v1/do/${action}`;const doAction = (action: string, body: unknown) =>  fetch(actionUrl(action), {    method: 'POST',    headers: { Authorization: `Bearer ${process.env.BROWSERCITY_API_KEY}`, 'Content-Type': 'application/json' },    body: JSON.stringify(body),  }).then((r) => r.json());const opened = await doAction('open', { browser: 'chromium' });try {  await doAction('navigate', { sessionId: opened.sessionId, url: 'https://example.com' });  const page = await doAction('markdown', { sessionId: opened.sessionId });  console.log(page.result);} finally {  await doAction('close', { sessionId: opened.sessionId });}

Works with every agent framework

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

Give your AI agents the web.

Start for free. No credit card required. Private sessions by default.