rtrvr.ai
Back to Blog

rtrvr v27: watch and take over a Cloud browser

Observe a remote run as it happens, step in when judgment is needed, and return control to the agent.

Live Cloud Browser Viewing Demo

Watch rtrvr.ai execute across 50+ parallel cloud browsers with live VNC streaming and mid-run takeover

Using Multiple Provider Keys

An older setup walkthrough. Provider limits and charges apply; current Free Mode does not require your own key.

Automated Content Creation Demo

Generate images, videos, and content then automatically publish across all your social platforms

This is our biggest release yet.

v27 brings live browser viewing to cloud execution. Watch your AI agents work across hundreds of parallel browsers in real-time. Take over mid-run when needed. See exactly what your automation sees.

This release also introduced multiple provider keys and new controls for multi-step tasks. Current offer: Free Mode includes supported AI models and Cloud browser time for tasks you start in the extension or Cloud dashboard. No AI API key or paid AI subscription is required. Sponsored cards and a daily fair-use allowance apply. Schedules, triggers, cookie sync, and Chrome control through API or MCP require a paid plan. Data enrichment and managed proxies can use credits separately. Compare plans.

Let's dive in.


Live Cloud Browser Viewing

This changes everything about cloud automation.

Until now, cloud browser execution was a black box. You'd trigger a workflow, wait, and hope for results. When something failed, you'd dig through logs trying to reconstruct what happened.

No more.

Watch Your Agents Work

v27 introduces live VNC streaming for every cloud browser session:

  • Real-time visibility: See exactly what your agent sees as it navigates, clicks, and extracts
  • Parallel monitoring: Watch dozens of browsers simultaneously in a grid view
  • Mid-run takeover: Jump in and interact with any browser at any time
  • Attach later: Connect to running sessions even if you didn't start them

Why This Matters

We built this because debugging real-world agent failures—especially on sites with captchas, dynamic content, or complex authentication flows—required seeing exactly what was happening.

Logs tell you what the agent did. Live view tells you why something didn't work.

Technical deep dive: If you want the full architecture story—how we built VNC streaming for serverless Cloud Run workers without sticky instance routing—read our detailed engineering post.

Parallel Execution at Scale

The grid view transforms "hours of web research" into minutes:

Before: 100 URLs × 2 min each = 200 minutes (3+ hours)
After:  100 URLs ÷ 50 parallel browsers = 4 minutes

And you can watch all 50 browsers work simultaneously.


Provider keys and today's Free Mode

The release introduced support for multiple provider keys. Each key remains subject to its provider's limits and charges; adding keys does not create an unlimited free service.

You no longer need your own API key to start. Free Mode includes supported AI models and Cloud browser time for tasks you start in the extension or Cloud dashboard. No AI API key or paid AI subscription is required. Sponsored cards and a daily fair-use allowance apply. Your account shows the current allowance and reset time. When you reach it, wait for the reset, use your own AI provider, or choose a paid plan. Your provider may charge for its usage.

Upgraded to Gemini 3 Flash & Pro

We've upgraded our model integration to support Google's latest:

  • Gemini 3 Flash: Faster execution, lower costs
  • Gemini 3 Pro: Better reasoning for complex tasks

You choose which model to use based on your task complexity.


Automated Content Creation

Generate and publish content across all your platforms in a single workflow.

The Full Pipeline

1. Generate images with AI (DALL-E, Midjourney, etc.)
2. Create videos or edit existing content
3. Write captions and descriptions
4. Publish to LinkedIn, Twitter, Instagram, YouTube
5. All in one automated workflow

Better File Handling

v27 significantly improves how the agent handles files throughout workflows:

  • File Pills: Manage attached files directly in the chat interface
  • Cross-step file reuse: Agent can use images and files from previous steps
  • Better media handling: Improved support for images, videos, and documents

This means your content creation workflows can now:

  • Generate an image in step 1
  • Edit it in step 2
  • Post it to multiple platforms in step 3
  • All without manual file management

NEW: rtrvr AI Twitter Bot

Just tweet at @rtrvrai and our AI agent responds.

Try it:

"Hey @rtrvrai, what are the top stories on Hacker News right now?"

The bot will browse to Hacker News, extract the top stories, and reply with structured results.

This is a glimpse of where we're headed: rtrvr.ai as infrastructure that any interface can trigger.


One-Click Templates

No more writing prompts from scratch.

rtrvr.ai/retrieve

We've launched a template library at rtrvr.ai/retrieve with pre-built workflows for:

  • Lead research: Extract company info, decision-makers, tech stacks
  • Competitor monitoring: Track pricing, features, job postings
  • Job applications: Auto-apply with resume customization
  • Content research: Aggregate news, discussions, trends
  • E-commerce tracking: Monitor products, prices, inventory

Pick a template, customize parameters, run.

Shareable Workflows

Every successful execution can be shared via a single URL. Your team can replay your exact workflow, or use it as a starting point for their own.


Enhanced MCP & API

MCP OAuth Support

Connecting to rtrvr.ai via MCP just got simpler:

Server URL: mcp.rtrvr.ai
Authentication: Google Sign-In (OAuth)

No more embedding API keys in your MCP configuration. Just connect and authenticate with Google.

New Cloud Tools via MCP

MCP connections now include:

  • /scrape: Cloud-based extraction with Smart DOM Trees
  • /agent: Full agentic execution in cloud browsers

Rich Parameter Support

The API and MCP now accept:

  • Files & Images: Pass URLs or upload directly
  • Recordings: Reuse previous execution trajectories
  • Shared Workflow URLs: Replay any shared workflow programmatically

Example: Batch job applications

javascript
// Run the same application workflow across 50 job listings const results = await fetch('https://api.rtrvr.ai/agent', { method: 'POST', headers: { 'Authorization': `Bearer ${apiKey}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ // Replay a shared workflow workflowUrl: 'https://rtrvr.ai/share/abc123', // With these job-specific parameters parameters: { jobUrl: 'https://company.com/careers/role', resumeUrl: 'https://drive.google.com/...', coverLetterContext: 'Customize for ML infrastructure role' } }) });

Full API & MCP documentation →


Smarter Agent

Automatic Sheets Orchestration

The agent now understands when a task requires multi-step orchestration and can:

  1. Create Google Sheets with appropriate workflow parameters
  2. Configure columns for input URLs, extraction fields, and output data
  3. Execute row-by-row with parallel processing
  4. Write results back to the sheet automatically

Example prompt:

"Research the top 50 YC companies from this batch, extract their funding, team size, and tech stack, and compile into a spreadsheet"

The agent will:

  • Create a sheet with company URLs in column A
  • Configure extraction columns for funding, team size, tech stack
  • Run parallel browsers to research each company
  • Write structured results back to the sheet

No manual sheet setup required.

Better Multi-Step Reasoning

We've improved the orchestrator's ability to:

  • Break complex tasks into logical steps
  • Maintain context across long-running workflows
  • Recover from failures mid-execution
  • Handle nested workflows (workflows that trigger other workflows)

Quality of Life Improvements

Fresh Chat Hints

The extension now suggests starting a new chat when your current context is getting cluttered. Clean context = better agent performance.

Quick New Chat

Press Cmd + Shift + Enter (Mac) or Ctrl + Shift + Enter (Windows) to instantly start a fresh chat.

Simpler Sign-In

We've moved to lazy permission requests. We only ask for Google permissions when you actually need them (like writing to Sheets), not upfront during signup.

Better Captcha Handling

Our native captcha solving now handles even more challenge types. The agent can work through image selection captchas, checkbox challenges, and multi-step verification flows without external services.

Read how we built native captcha solving →

Redesigned Onboarding

New users get a streamlined setup flow:

  1. Install extension
  2. Choose a supported Free Mode model, or optionally connect your own provider
  3. Run your first automation

Time from install to first successful automation: under 3 minutes.


Updated Credit Tiers

We've adjusted credit allocations across all tiers:

Pricing has changed since v27. Supported AI is now included in interactive Free Mode. API and WhatsApp runs use credits for the resources they consume. Chrome control through API or MCP requires a subscription. Free Mode applies to interactive tasks in the extension and Cloud dashboard. See current plans for subscriptions, separately billed features, and policy links.


Affiliate Program

Love rtrvr.ai? Earn money sharing it.

  • $2.50 per referral paid to you
  • 50% off first month for your audience
  • Track conversions in your dashboard
  • Get paid monthly

Join the affiliate program →


Comparison Guides

We've published detailed comparison guides to help you understand where rtrvr.ai fits:

ComparisonKey Differentiator
vs Claude for ChromeCurrent access, signed-in sites, and task fit
vs BrowserbaseE2E agent vs infrastructure-only, DOM vs CDP
vs ApifyNatural language vs code, auth sites access
vs ClayPublic-site research and paid data enrichment
vs Chrome ExtensionsChoose by extraction, monitoring, or actions

What's Next

v27 is our biggest release, but we're just getting started:

Coming soon:

  • Scheduled cloud executions: Set it and forget it monitoring
  • Team workspaces: Shared workflows, templates, and results
  • Custom browser profiles: Persistent cookies and auth across sessions
  • Enhanced recording: Screenshot capture at key steps for debugging

Get Started with v27

Update Your Extension

If you already have rtrvr.ai installed, it should auto-update. If not:

Update Chrome Extension →

Try Cloud Browsers

Experience live VNC viewing with parallel execution:

Launch Cloud Platform →

Join the Community

Questions, feedback, feature requests:

Join Discord →


Resources


Happy Automating!

The rtrvr.ai Team