Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    Are consumers doomed to pay more for electricity due to data center buildouts?

    The $599 MacBook Neo is Apple’s long-awaited colorful, lower-cost MacBook

    No fooling: NASA targets April 1 for Artemis II launch to the Moon

    Facebook X (Twitter) Instagram
    • Artificial Intelligence
    • Business Technology
    • Cryptocurrency
    • Gadgets
    • Gaming
    • Health
    • Software and Apps
    • Technology
    Facebook X (Twitter) Instagram Pinterest Vimeo
    Tech AI Verse
    • Home
    • Artificial Intelligence

      What the polls say about how Americans are using AI

      February 27, 2026

      Tensions between the Pentagon and AI giant Anthropic reach a boiling point

      February 21, 2026

      Read the extended transcript: President Donald Trump interviewed by ‘NBC Nightly News’ anchor Tom Llamas

      February 6, 2026

      Stocks and bitcoin sink as investors dump software company shares

      February 4, 2026

      AI, crypto and Trump super PACs stash millions to spend on the midterms

      February 2, 2026
    • Business

      Weighing up the enterprise risks of neocloud providers

      March 3, 2026

      A stolen Gemini API key turned a $180 bill into $82,000 in two days

      March 3, 2026

      These ultra-budget laptops “include” 1.2TB storage, but most of it is OneDrive trial space

      March 1, 2026

      FCC approves the merger of cable giants Cox and Charter

      February 28, 2026

      Finding value with AI and Industry 5.0 transformation

      February 28, 2026
    • Crypto

      Strait of Hormuz Shutdown Shakes Asian Energy Markets

      March 3, 2026

      Wall Street’s Inflation Alarm From Iran — What It Means for Crypto

      March 3, 2026

      Ethereum Price Prediction: What To Expect From ETH In March 2026

      March 3, 2026

      Was Bitcoin Hijacked? How Institutional Interests Shaped Its Narrative Since 2015

      March 3, 2026

      XRP Whales Now Hold 83.7% of All Supply – What’s Next For Price?

      March 3, 2026
    • Technology

      Are consumers doomed to pay more for electricity due to data center buildouts?

      March 4, 2026

      The $599 MacBook Neo is Apple’s long-awaited colorful, lower-cost MacBook

      March 4, 2026

      No fooling: NASA targets April 1 for Artemis II launch to the Moon

      March 4, 2026

      Downdetector, Speedtest sold to IT service-provider Accenture in $1.2B deal

      March 4, 2026

      FCC chair calls Paramount/WBD merger “a lot cleaner” than defunct Netflix deal

      March 4, 2026
    • Others
      • Gadgets
      • Gaming
      • Health
      • Software and Apps
    Check BMI
    Tech AI Verse
    You are at:Home»Technology»Show HN: Vibium – Browser automation for AI and humans, by Selenium’s creator
    Technology

    Show HN: Vibium – Browser automation for AI and humans, by Selenium’s creator

    TechAiVerseBy TechAiVerseDecember 24, 2025No Comments4 Mins Read1 Views
    Facebook Twitter Pinterest Telegram LinkedIn Tumblr Email Reddit
    Show HN: Vibium – Browser automation for AI and humans, by Selenium’s creator
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp Email

    Show HN: Vibium – Browser automation for AI and humans, by Selenium’s creator

    Vibium

    Browser automation without the drama.

    Vibium is browser automation infrastructure built for AI agents. A single binary handles browser lifecycle, WebDriver BiDi protocol, and exposes an MCP server — so Claude Code (or any MCP client) can drive a browser with zero setup. Works great for AI agents, test automation, and anything else that needs a browser.

    New here? Getting Started Tutorial — zero to hello world in 5 minutes.


    Quick Reference

    Component Purpose Interface
    Clicker Browser automation, BiDi proxy, MCP server CLI / stdio / WebSocket :9515
    JS Client Developer-facing API npm package


    Architecture

    ┌─────────────────────────────────────────────────────────────┐
    │                         LLM / Agent                         │
    │          (Claude Code, Codex, Gemini, Local Models)         │
    └─────────────────────────────────────────────────────────────┘
                          ▲
                          │ MCP Protocol (stdio)
                          ▼
               ┌─────────────────────┐         
               │   Vibium Clicker    │
               │                     │
               │  ┌───────────────┐  │
               │  │  MCP Server   │  │
               │  └───────▲───────┘  │         ┌──────────────────┐
               │          │          │         │                  │
               │  ┌───────▼───────┐  │WebSocket│                  │
               │  │  BiDi Proxy   │  │◄───────►│  Chrome Browser  │
               │  └───────────────┘  │  BiDi   │                  │
               │                     │         │                  │
               └─────────────────────┘         └──────────────────┘
                          ▲
                          │ WebSocket BiDi :9515
                          ▼
    ┌─────────────────────────────────────────────────────────────┐
    │                        JS/TS Client                         │
    │                     npm install vibium                      │
    │                                                             │
    │    ┌─────────────────┐               ┌─────────────────┐    │
    │    │ Async API       │               │    Sync API     │    │
    │    │ await vibe.go() │               │    vibe.go()    │    │
    │    │                 │               │                 │    │
    │    └─────────────────┘               └─────────────────┘    │
    └─────────────────────────────────────────────────────────────┘
    

    Components

    Clicker

    A single Go binary (~10MB) that does everything:

    • Browser Management: Detects/launches Chrome with BiDi enabled
    • BiDi Proxy: WebSocket server that routes commands to browser
    • MCP Server: stdio interface for LLM agents
    • Auto-Wait: Polls for elements before interacting
    • Screenshots: Viewport capture as PNG

    Design goal: The binary is invisible. JS developers just npm install vibium and it works.

    JS/TS Client

    // Option 1: require (REPL-friendly)
    const { browserSync } = require('vibium')
    
    // Option 2: dynamic import (REPL with --experimental-repl-await)
    const { browser } = await import('vibium')
    
    // Option 3: static import (in .mjs or .ts files)
    import { browser, browserSync } from 'vibium'

    Sync API:

    const fs = require('fs')
    const { browserSync } = require('vibium')
    
    const vibe = browserSync.launch()
    vibe.go('https://example.com')
    
    const png = vibe.screenshot()
    fs.writeFileSync('screenshot.png', png)
    
    const link = vibe.find('a')
    link.click()
    vibe.quit()

    Async API:

    const fs = await import('fs/promises')
    const { browser } = await import('vibium')
    
    const vibe = await browser.launch()
    await vibe.go('https://example.com')
    
    const png = await vibe.screenshot()
    await fs.writeFile('screenshot.png', png)
    
    const link = await vibe.find('a')
    await link.click()
    await vibe.quit()

    For Agents

    One command to add browser control to Claude Code:

    claude mcp add vibium -- npx -y vibium

    That’s it. No manual steps needed. Chrome downloads automatically during setup.

    Tool Description
    browser_launch Start browser (visible by default)
    browser_navigate Go to URL
    browser_find Find element by CSS selector
    browser_click Click an element
    browser_type Type text into an element
    browser_screenshot Capture viewport (base64 or save to file with --screenshot-dir)
    browser_quit Close browser


    For Humans

    This automatically:

    1. Installs the Clicker binary for your platform
    2. Downloads Chrome for Testing + chromedriver to platform cache:
      • Linux: ~/.cache/vibium/
      • macOS: ~/Library/Caches/vibium/
      • Windows: %LOCALAPPDATA%vibium

    No manual browser setup required.

    Skip browser download (if you manage browsers separately):

    VIBIUM_SKIP_BROWSER_DOWNLOAD=1 npm install vibium

    Platform Support

    Platform Architecture Status
    Linux x64 ✅ Supported
    macOS x64 (Intel) ✅ Supported
    macOS arm64 (Apple Silicon) ✅ Supported
    Windows x64 ✅ Supported


    Quick Start

    As a library:

    import { browser } from "vibium";
    
    const vibe = await browser.launch();
    await vibe.go("https://example.com");
    const el = await vibe.find("a");
    await el.click();
    await vibe.quit();

    With Claude Code:

    Once installed via claude mcp add, just ask Claude to browse:

    “Go to example.com and click the first link”


    Contributing

    See CONTRIBUTING.md for development setup and guidelines.


    Roadmap

    V1 focuses on the core loop: browser control via MCP and JS client.

    See V2-ROADMAP.md for planned features:

    • Python and Java clients
    • Cortex (memory/navigation layer)
    • Retina (recording extension)
    • Video recording
    • AI-powered locators

    Updates

    • 2025-12-22: Day 12 – Published to npm
    • 2025-12-21: Day 11 – Polish & Error Handling
    • 2025-12-20: Day 10 – MCP Server
    • 2025-12-19: Day 9 – Actionability
    • 2025-12-19: Day 8 – Elements & Sync API
    • 2025-12-17: Halfway There
    • 2025-12-16: Week 1 Progress
    • 2025-12-11: V1 Announcement

    License

    Apache 2.0

    Share. Facebook Twitter Pinterest LinkedIn Reddit WhatsApp Telegram Email
    Previous ArticleMicrosoft Agent Framework
    Next Article Researchers achieved 1,270 Wh/L in an anode-free lithium metal battery
    TechAiVerse
    • Website

    Jonathan is a tech enthusiast and the mind behind Tech AI Verse. With a passion for artificial intelligence, consumer tech, and emerging innovations, he deliver clear, insightful content to keep readers informed. From cutting-edge gadgets to AI advancements and cryptocurrency trends, Jonathan breaks down complex topics to make technology accessible to all.

    Related Posts

    Are consumers doomed to pay more for electricity due to data center buildouts?

    March 4, 2026

    The $599 MacBook Neo is Apple’s long-awaited colorful, lower-cost MacBook

    March 4, 2026

    No fooling: NASA targets April 1 for Artemis II launch to the Moon

    March 4, 2026
    Leave A Reply Cancel Reply

    Top Posts

    Ping, You’ve Got Whale: AI detection system alerts ships of whales in their path

    April 22, 2025703 Views

    Lumo vs. Duck AI: Which AI is Better for Your Privacy?

    July 31, 2025288 Views

    6.7 Cummins Lifter Failure: What Years Are Affected (And Possible Fixes)

    April 14, 2025164 Views

    6 Best MagSafe Phone Grips (2025), Tested and Reviewed

    April 6, 2025124 Views
    Don't Miss
    Technology March 4, 2026

    Are consumers doomed to pay more for electricity due to data center buildouts?

    Are consumers doomed to pay more for electricity due to data center buildouts? To avoid…

    The $599 MacBook Neo is Apple’s long-awaited colorful, lower-cost MacBook

    No fooling: NASA targets April 1 for Artemis II launch to the Moon

    Downdetector, Speedtest sold to IT service-provider Accenture in $1.2B deal

    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    About Us
    About Us

    Welcome to Tech AI Verse, your go-to destination for everything technology! We bring you the latest news, trends, and insights from the ever-evolving world of tech. Our coverage spans across global technology industry updates, artificial intelligence advancements, machine learning ethics, and automation innovations. Stay connected with us as we explore the limitless possibilities of technology!

    Facebook X (Twitter) Pinterest YouTube WhatsApp
    Our Picks

    Are consumers doomed to pay more for electricity due to data center buildouts?

    March 4, 20262 Views

    The $599 MacBook Neo is Apple’s long-awaited colorful, lower-cost MacBook

    March 4, 20262 Views

    No fooling: NASA targets April 1 for Artemis II launch to the Moon

    March 4, 20262 Views
    Most Popular

    7 Best Kids Bikes (2025): Mountain, Balance, Pedal, Coaster

    March 13, 20250 Views

    VTOMAN FlashSpeed 1500: Plenty Of Power For All Your Gear

    March 13, 20250 Views

    Best TV Antenna of 2025

    March 13, 20250 Views
    © 2026 TechAiVerse. Designed by Divya Tech.
    • Home
    • About Us
    • Contact Us
    • Privacy Policy
    • Terms & Conditions

    Type above and press Enter to search. Press Esc to cancel.