rtrvr.ai logo
rtrvr.ai
PricingBlogDashboard

Core Agent

Getting StartedWeb AgentSheets Workflows

Building Blocks

Recordings & GroundingTool CallingKnowledge Base (RAG)

Platform Access

API OverviewAgent APIScrape APIBrowser as API/MCP

Automation

ShortcutsTriggers & WebhooksSchedules

Account & Security

Cookie SyncPermissions & Privacy
DocsBrowser as API / MCP

Browser as API / MCP

Transform your logged-in Chrome into a programmable API endpoint — call it from Claude.ai, your backend, CI/CD, Slack bots, or any HTTP client.

2 min read

Your logged-in Chrome browser becomes a programmable API. Call it from anywhere — Claude.ai (via MCP), backend code, CI/CD pipelines, Slack bots, or any HTTP client. One endpoint serves both the MCP protocol and direct HTTP requests. This controls YOUR Chrome with YOUR logged-in sessions, not cloud browsers.

Two Ways to Connect

Get your credentials from the MCP / Remote Browser Tools section in extension settings:

MethodHowUse For
MCP URLCopy the full URL → paste into Claude.ai or any MCP clientClaude.ai, Cursor, Cline, any MCP-compatible tool
API KeyExtract rtrvr_... from the URL → use as Bearer tokencurl, scripts, backend code, CI/CD
text
MCP URL format:
https://mcp.rtrvr.ai?apiKey=rtrvr_xxx&deviceId=abc123

API Key:
rtrvr_xxx (extracted from the URL)

Quick Example — List Tabs (Free)

bash
curl -X POST "https://mcp.rtrvr.ai" \
  -H "Authorization: Bearer rtrvr_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "get_browser_tabs",
    "params": { "filter": "all" }
  }'

Quick Example — AI-Powered (Credits)

bash
curl -X POST "https://mcp.rtrvr.ai" \
  -H "Authorization: Bearer rtrvr_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "tool": "planner",
    "params": {
      "user_input": "Go to ChatGPT, ask about top restaurants in SF, extract the response",
      "tab_urls": ["https://chatgpt.com"],
      "max_steps": 10
    }
  }'

Free vs. Credit Tools

Free tools require no credits and are perfect for scripting with your own LLM provider. Credit tools leverage rtrvr.ai's custom prompts, integrations, and multi-step planning.

TierToolsUse Case
Freeget_browser_tabs, get_page_data, take_page_action, execute_javascriptDirect browser control, scripting
Creditplanner (multi-step), act, extract, crawlAI reasoning, complex workflows
Utilitylist_devices, get_current_creditsDevice management, billing
Free tools let you drive browser actions with your own LLM. Credit tools add rtrvr.ai's custom prompts, Sheets/Docs integrations, and pagination-aware crawling.

Multi-Device Support

Install the extension on multiple Chrome profiles to control them independently. Each profile gets a unique deviceId. Omit deviceId to auto-select the most recently active browser.

  • Install extension on multiple Chrome profiles
  • Each gets a unique deviceId (visible in MCP URL)
  • Call list_devices to see all registered devices
  • Target a specific device: add "deviceId": "abc123" to your request body

Response Format

json
{
  "success": true,
  "data": { "tabs": [...], "tabCount": 5 },
  "error": null,
  "metadata": {
    "tool": "get_browser_tabs",
    "deviceId": "abc123",
    "executionTime": 234,
    "creditsUsed": 0,
    "creditsRemaining": 10000
  }
}

Security Settings

Control which tools can be called remotely from the MCP / Remote Browser Tools settings:

  • Toggle entire tool families on/off (Free Tools, Credit Tools)
  • Fine-tune individual tool permissions
  • Disabled tools return clear error messages to the caller
  • Remote tools are enabled by default — review settings for your security needs

Troubleshooting

If you see "No online devices found" errors:

  • Refresh the extension: open/close the popup window
  • Rotate the API key from the dropdown menu in settings
  • Sign out and back in to reset device registration
  • Call {"tool": "list_devices"} to check device status
Most connection issues are fixed by refreshing the extension or rotating the API key.
Previous
Schedules
Next
API Overview

On this page

Two Ways to ConnectQuick Example — List Tabs (Free)Quick Example — AI-Powered (Credits)Free vs. Credit ToolsMulti-Device SupportResponse FormatSecurity SettingsTroubleshooting

Ready to automate?

Join teams using rtrvr.ai to build playful, powerful web automation workflows.