A New Aera of Browser

The world is getting smarter. Why isn't your browser?

Y Home / Y
Aera Aera - Early Access
y.com
Y
Home
Explore
Notifications
Messages
Profile

For you

Trending

Andrew Rivers
Post
Aera Browser
Aera Browser @getaera · 2h
Your browser sucks. It doesn't have to be that way.

Why keep surfing the web like you did 20 years ago? It's time for some change.
54 26

What's happening

Technology · Trending
Browser Automation
Business · Trending
MCP Integration

Who to follow

Aera Browser
Aera Browser
@getaera
Andrew Rivers
Andrew Rivers
@itsandrewrivers
Hey Aera, I just launched getaera.app. Can you post on my Y profile about the early access drop?
Read getaera.app
Aera Aera - Early Access
Navigated to your Y profile
Y Home / Y
Analyzed the page
input What's happening?
button Post
button Explore
link Browser Automation
link Follow
input What's happening?
input What's happening?
Clicked
button Post
Read your browser tab
Y Home / Y
Completed in 17s

Not Just an Assistant

Sure, everyone has a browser plugin that can help you summarize a page. We are going deeper than that

Developer API

Built-in MCP server using JSON-RPC 2.0 protocol. AI agents connect to Aera's browser, discover available automation tools, and execute commands through the standardized MCP interface.

LLM-Ready Data

Aera provides AI agents with structured page data they can understand. Browser automation tools return formatted results with JSON schemas, making web content accessible to AI workflows.

Smart Actions

AI agents execute powerful automation workflows directly on Aera browser. Click, type, navigate, and extract data through standardized MCP tool calls that work reliably every time.

Built for Developers & Power Users

The first browser with a built-in MCP server. AI agents connect directly to Aera to discover and use its powerful browser automation capabilities.

Developer API

Built-in MCP server using JSON-RPC 2.0 protocol. AI agents connect to Aera's browser, discover available automation tools, and execute commands through the standardized MCP interface.

LLM-Ready Data

Aera provides AI agents with structured page data they can understand. Browser automation tools return formatted results with JSON schemas, making web content accessible to AI workflows.

Smart Actions

AI agents execute powerful automation workflows directly on Aera browser. Click, type, navigate, and extract data through standardized MCP tool calls that work reliably every time.

Intelligent automation in 3 steps

Navigate to pages, get structured page data, then take informed actions. No more guessing what elements exist.

Navigate to Page

AI agent requests navigation to a specific URL

INPUT
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "navigate_to_url",
    "arguments": {
      "url": "https://google.com"
    }
  }
}
Aera analyzes page and returns elements

Receive Page Intelligence

Aera returns prioritized, actionable page elements

OUTPUT
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "Navigation successful. Page loaded: Google Homepage"
      }
    ],
    "page_elements": [
      {
        "id": "search_input",
        "type": "input",
        "priority": 1,
        "text": "Search Google or type a URL",
        "selector": "input[name='q']"
      },
      {
        "id": "search_button", 
        "type": "button",
        "priority": 2,
        "text": "Google Search",
        "selector": "input[value='Google Search']"
      }
    ]
  }
}
Agent chooses action based on page data

Take Informed Action

AI agent interacts with specific page elements

INPUT
{
  "jsonrpc": "2.0",
  "id": 2,
  "method": "tools/call",
  "params": {
    "name": "search_and_submit",
    "arguments": {
      "element_id": "search_input",
      "query": "download Aera browser",
      "submit_button_id": "search_button"
    }
  }
}