@akshay_pachaar: Agents reach websites in 6 ways. (Google and Microsoft are betting on the same one.) Ask an agent to buy something and …
Summary
The article describes six methods for AI agents to interact with websites, from raw APIs to built-in assistants, and highlights WebMCP as the approach that preserves agent autonomy, requires no setup, and provides named actions.
View Cached Full Text
Cached at: 08/30/26, 10:06 AM
Agents reach websites in 6 ways.
(Google and Microsoft are betting on the same one.)
Ask an agent to buy something and watch it work. It screenshots the page, looks for something shaped like a button, clicks, and screenshots again to see what happened.
You pay tokens every time it looks, and one redesign breaks the run.
The site already knows what it can do. It has a search, a cart, a checkout, and none of that is written down anywhere a program can read.
Here are the six, ordered from furthest from the interface to closest.
-
Raw API. Your script calls the backend with a key you manage. Precise and fast, though you had to find the endpoints yourself and the website never enters the picture.
-
Backend MCP server. The company describes its actions as named tools and your agent connects to them. Someone who understands the product wrote those definitions, so they name real actions instead of guessed ones. The interface is still skipped.
-
Computer use. The agent sees the live page as an image and clicks around it. Nothing to configure, but every look costs money and a layout change confuses it.
-
Browser automation over the DOM. The agent reads the page’s underlying code instead of a picture of it. More reliable than pixels, except the tooling is generic, so the agent still infers meaning from anonymous divs and unlabeled buttons.
-
WebMCP, the one Chrome and Edge are building together. The page declares its own actions with names, plain-English descriptions, and typed inputs, and your agent calls them inside your live browser session.
-
The site’s built-in assistant. The company ships a chat box, picks the model, and pays for the tokens. It works, and it is not your agent, so nothing it learns about you carries anywhere else.
Three things vary across the six. Whose agent does the work, what you configure before anything happens, and what the agent receives when it arrives.
Every option except one gives up at least one of the three. Raw API and backend MCP hand you typed actions and remove the website. Computer use asks for no setup and hands over pixels. The built-in assistant is precise and belongs to the vendor.
WebMCP is the only one that keeps all three. Your own agent, nothing to configure, and named actions instead of guesswork.
I wrote the full breakdown. The article is quoted below.
Similar Articles
The 'agent web' is coming — where AI agents talk directly to each other instead of scraping websites
The article discusses the future of AI agents communicating directly with each other via APIs and protocols like MCP, bypassing human-oriented web interfaces, and the author asks the community about adoption timelines and use cases.
WebMCP: Teaching Your Website to Talk to AI Agents
WebMCP is a proposed web standard developed by Google and Microsoft that allows websites to declare structured tools for AI agents to call directly, replacing fragile screen-scraping with stable interfaces.
@akshay_pachaar: https://x.com/akshay_pachaar/status/2070860837448040832
Google's Agents CLI provides a unified tool for scaffolding, evaluating, and deploying AI agents, addressing the fragmented workflow in agentic engineering. The article walks through building a RAG agent using the CLI, showcasing its integration with coding agents and ADK patterns.
AI agents are about to become software buyers. Is anyone else thinking about this?
This article discusses the emerging trend of AI agents acting as software buyers, highlighting the lack of standardized protocols for agent-friendly product evaluation, pricing discovery, and autonomous checkout. It proposes three existing solutions—llms.txt, MCP servers, and agent checkout protocols—and questions whether companies are prepared for non-human traffic.
@akshay_pachaar: https://x.com/akshay_pachaar/status/2093452397402317239
WebMCP is a browser API from Chrome and Edge teams that lets websites declare actions for AI agents, providing a more reliable and efficient way for agents to interact with web content compared to other methods.