A New Aera of Browser

The world has gotten smarter. Why hasn't your browsing?

Aera New Tab
aera://newtab
Start MCP Server
Google
Github

History

Create Aera browser home page design 9m
Refactor animation code structure 2d
Animate AI messages over 11 seconds 2d
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 y.com
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 Another "Assistant"

Other browsers give you a chatbot. Aera gives you power.

But Aera, can you...
automate my social media posts? Yes.
respond to my emails? Why not?
conduct market research? Of course.
order cat food from Amazon? ... YES.

Built for Developers & Power Users

Building your own tools? No problem.

One Click MCP Setup

Aera has a built-in MCP server. Just click a button to get started.

LLM-Ready Data

Aera provides your agent with structured, prioritized page data.

Just Works

Your agent clicks, types, and navigates. Reliably. Every time.

3-Step Automation

Navigate to pages, get structured page data, take informed actions.

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"
    }
  }
}