Sphere Quarterly · Issue 01 · Agents
Your site has an API for humans. Now it needs one for agents.
Every major platform shipped agentic browsing in 2024–2025. Claude calls tools. ChatGPT calls Apps. Copilot calls connectors. The agents are arriving, and they don’t read HTML — they read structure. Sites that publish an MCP endpoint get called. The rest are left to be interpreted.
If you only read one box on this page.
For thirty years, websites have served exactly one client: a person sitting behind a browser. In 2026 a second client showed up — AI agents. Claude, ChatGPT, Copilot, Cursor, custom GPTs, the next thousand. They don’t need pictures or padding. They need structure.
Today they fake it by scraping the HTML and guessing what your site does. They guess wrong frequently. They miss the “Book a demo” button because it’s an `aria-label` inside a `<button>` inside a modal. They misstate your pricing. They send users to your competitors’ pages by accident.
Sphere gives every site a second front door. Every site publishes an MCP endpoint — Model Context Protocol, the open standard Anthropic open-sourced in late 2024 and every major AI platform has adopted. Agents stop scraping. They start calling. The site exposes typed tools and signed resources. Every interaction is auditable.
The result: agents that act on the user’s behalf find the right page, book the right demo, pull the right blog post, and never hallucinate your pricing again. The site stays a website for humans. Underneath, it’s an API for everything else.
book_demo on the site’s MCP endpoint. The booking lands clean with timezone, owner, source.list_products, get_blog_post, search_content. Returns verbatim, with citations.Chapter 01
The crawl is dying. The call is arriving.
For decades search engines and AI tools scraped your website — downloaded the HTML and guessed. In 2026 they want to call it instead, like a software API. Your site needs to answer.
The crawl is a thirty-year-old workaround. Search engines invented it because there was no other way for a piece of software to learn what a site contained. The arrangement was always uneasy — sites paid bandwidth to serve cached snapshots, and crawlers paid in cycles to parse HTML that was never meant to be read by machines. Both sides muddled through because there was no alternative.
In 2026 there is. Anthropic open-sourced Model Context Protocol in November 2024. Within a year, OpenAI, Microsoft, Google, Cursor, Replit, and every serious agentic product had implemented it. MCP is the wire format an LLM uses to call a tool — structured, typed, authenticated, auditable. It is the HTTP of the agentic web.
Sites that publish an MCP endpoint stop being parsed and start being called. The same engineering effort that wrote the public-facing booking page now answers book_demo(). The same content that lives in the CMS answers get_blog_post(slug). Zero duplicated work, dramatically higher fidelity, signed by default.
Chapter 02
Request, route, respond. The wire flow is small.
An agent makes a structured request (JSON), the site routes it to the right tool, the tool does its job, the answer comes back signed. The whole round-trip is faster than rendering a single web page.
The protocol is deliberately small. An MCP server advertises a list of tools (callable functions with typed inputs and outputs) and resources (addressable URIs the agent can fetch). A client sends a JSON-RPC request; the server validates, executes, and returns a typed result. The framing is identical to what any modern API uses, with two material differences: tools are discoverable (the agent can ask the server what it can do), and resources are content-addressed (an agent can cite, not just summarize).
For a marketing site, the right surface is small: a search tool over your content, a list of blog posts, a fetch-by-slug for full bodies, a booking tool, a contact-form submitter, a newsletter subscribe. Sphere’s reference implementation exposes nine tools and four resource families. Total surface area: ~600 lines of TypeScript. One afternoon of work for a marketing site that’s now agent-readable for the next decade.
Chapter 03
Nine tools, six resources, one front door.
Every site needs the same handful of capabilities. Search the content. Read a post. List products. Book a demo. Submit a contact. We’ve picked the nine that cover 90 percent of what an agent will ever want from a B2B site.
A surface this small is the point. The temptation when designing an agent-readable site is to expose everything. Resist it. Agents work best with a sharply curated tool list — fewer choices, clearer names, typed inputs that prevent stupid mistakes. The marketing site is not the CRM; the CRM has its own MCP server with its own scope.
The right tools cover three jobs: read what we’ve published (search, list posts, fetch a post, list products), act on the visitor’s behalf (book a demo, submit a contact, subscribe to the newsletter, register a referral), and recall what the visitor has chosen to share (their engram, scoped by consent). That’s nine. Most sites will need fewer.
Chapter 04
Same content. Four readers. Four front doors.
A human gets a beautiful page. An agent gets structured JSON. A crawler gets indexable markdown. An AI assistant gets the engram. All four front doors lead to the same underlying content.
Once a site is agent-readable, the rendering surface multiplies. The same blog post is, in different contexts, an HTML page for humans, a JSON-RPC response for agents, a markdown body for traditional indexers, and a set of engrams an AI assistant can ground a longer conversation against. The content does not have to be authored four times. It has to be authored once, in a structure that can be projected four ways.
This is the architecture every CMS will be rebuilt around between 2026 and 2028. The marketing teams that get there first will show up in agent answers the way the early SEO movers showed up in Google answers — quietly dominant, with budgets locked in.
Chapter 05
What did the agents say about us last quarter?
When an agent answers a user’s question with information from your site, that’s a profile of your company built by a piece of AI. EU AI Act Article 13 makes you accountable for it. With an MCP endpoint, the full transcript is yours.
EU AI Act Article 13 requires AI deployers to provide transparency about the information their systems use. When an agent answers a buyer’s question about your product, the agent is a deployer of AI and your site is part of its information chain. If a regulator asks “what did your AI tell users about this company last quarter” — from a competitor’s point of view, that’s a discovery request waiting to happen — the answer is somewhere in millions of crawls and chat logs.
An MCP endpoint pre-stages the answer. Every call is logged, signed, parent-linked. What the agent asked, what your site returned, the canonical URLs cited. Disputes about misrepresentation become a query, not an investigation.
Chapter 06
Why this, why now: every platform shipped agents.
In one year the entire industry moved from “you type, the AI answers” to “you ask, the AI does.” The doing happens against APIs. Sites without an API for agents will be invisible.
Anthropic open-sourced MCP in November 2024. Within six months it was the de-facto interface for Claude Desktop, Cursor, Zed, dozens of agent frameworks. OpenAI shipped Apps and Operator. Microsoft shipped Copilot connectors. Google shipped Gemini agents. Salesforce shipped Agentforce. The industry standardised faster than any prior protocol — faster than REST, faster than GraphQL, faster than OAuth.
The buyer behavior is shifting now. The same pattern that played out with Google in 2001–2005 — sites that adopted SEO early dominated for a decade — is playing out for agentic discovery in 2026–2028. The cost of adding an MCP endpoint is one afternoon. The cost of not having one in two years is being absent from every agentic recommendation engine on the open web.
The regulatory tailwind is real. EU AI Act general-purpose-AI obligations are applicable from 2 August 2025; high-risk system obligations from 2 August 2026. Article 13 transparency and Article 26 deployer-logging requirements make signed, queryable agent interactions the path of least friction. Sites that publish an MCP endpoint with the ledger turned on satisfy the documentation requirement by construction. Sites that don’t are reconstructing logs from CDN headers.
Chapter 07
This piece is honest about the line.
Sphere’s marketing site is the proof. sphere-iq.com/agent documents the live MCP endpoint at /api/mcp. We eat our own dog food. The list below separates what runs today from what ships in the next two quarters.