DEV Community

aarhamforensics
aarhamforensics

Posted on • Originally published at twarx.com

Google Interactions API: The AI Technology Unifying Gemini Models and Agents

Originally published at twarx.com - read the full interactive version there.

Last Updated: June 25, 2026

Most AI technology workflows are solving the wrong problem entirely. They obsess over model quality while their real failure mode is coordination — the messy plumbing between models, tools, state, and long-running tasks. Google just shipped a fix and quietly admitted it. The most important AI technology shift of 2026 isn't a smarter model; it's a smarter way to wire one up.

Today Google announced that its Interactions API reached general availability and is now its primary interface for Gemini models and agents — a single unified endpoint with server-side state, background execution, tool combination, and Managed Agents. It launched in public beta in December 2025.

By the end of this article you'll know exactly what shipped, how the architecture actually works, when to use it versus LangGraph or AutoGen, and what it realistically costs to run in production.

Google Interactions API general availability announcement graphic showing unified Gemini endpoint architecture

Google's Interactions API GA announcement — a single unified endpoint for Gemini models and agents with server-side state and background execution. Source: Google

Coined Framework

The AI Coordination Gap

The AI Coordination Gap is the systemic distance between a model that can produce a correct answer and a system that can reliably orchestrate state, tools, and long-running work around that answer. Most production failures in modern AI technology live in this gap — not in the model weights.

Overview: What Was Announced

On June 25, 2026, Ali Çevik (Group Product Manager, Google DeepMind) and Philipp Schmid (Developer Relations Engineer, Google DeepMind) announced that Google AI Studio's Interactions API has reached general availability. The headline claim is structural, not incremental: it's now Google's primary API for interacting with Gemini models and agents.

Here are the confirmed facts directly from the announcement:

  • Public beta launched December 2025, and per Google it 'quickly become developers' favorite way to build applications with Gemini.'

  • GA brings a stable schema — the contract no longer breaks under you.

  • Managed Agents: one API call provisions a remote Linux sandbox where an agent can reason, execute code, browse the web, and manage files. The Antigravity agent ships as the default.

  • Background execution: set background=True on any call and the server runs the interaction asynchronously.

  • Tool improvements: mix built-in tools with your own.

  • Gemini Omni is coming 'soon' (multimodal generation).

  • All Google documentation now defaults to the Interactions API, and Google is working with ecosystem partners to make it the default across third-party SDKs and libraries.

The mechanism is deliberately minimal. As Google frames it: 'Whether you're calling a model or running an agent, the Interactions API gets you there in a few lines of code. Pass a model ID for inference, an agent ID for autonomous tasks, set background=True for anything long-running.'

That one sentence is the whole thesis. Google collapsed three historically separate concerns — inference, agentic autonomy, and async execution — into a single endpoint with three parameters. This is a direct architectural answer to the AI Coordination Gap. When the company behind Gemini declares a coordination layer its primary interface, every competing AI technology stack — from LangChain to Anthropic — gets benchmarked against it. That's not hyperbole; that's just how platform defaults work.

The model was never the bottleneck. The bottleneck was always the wiring between the model, your tools, your state, and the jobs that take longer than one HTTP request can survive.

1
Unified endpoint for models AND agents
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)




Dec 2025
Public beta launch date
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)




1 call
Provisions a full remote Linux sandbox (Managed Agents)
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
Enter fullscreen mode Exit fullscreen mode

What Is It: The Interactions API Explained for Non-Experts

Strip away the jargon. Before today, building anything serious with an AI technology model meant gluing together several different systems: one API to call the model, another framework to make it 'agentic' (so it could use tools), a database to remember the conversation, and a job queue to handle anything that took more than a few seconds. Four systems, four failure points, four bills.

The Interactions API is Google saying: stop. Use one door.

You make a request. Inside that request you tell it one of three things:

  • Give it a model ID → you get a normal model response (inference).

  • Give it an agent ID → you get an autonomous worker that can think, run code, browse the web, and handle files on its own.

  • Add background=True → the work runs on Google's servers without you holding the line open, and you check back later for the result.

The 'server-side state' part is the unsung hero. Normally, you are responsible for storing conversation history and feeding it back on every turn — and if you've ever debugged a broken context window at 2am, you know exactly how this fails. Here, Google holds the state. That's the difference between renting a car and renting a chauffeured car that remembers where you've been.

The most expensive line item in most agent systems isn't the GPU — it's the engineering time spent rebuilding state management and async job handling for the fifth time. The Interactions API deletes that line item from your budget.

Diagram comparing fragmented AI agent stack with four systems versus unified Interactions API single endpoint

The before/after of the AI Coordination Gap: four glued-together systems collapse into a single Interactions API endpoint with server-side state.

How It Works: The Architecture in Plain Language

Think of the Interactions API as a coordination layer that sits between your application and Gemini. Every request flows through the same pipeline, but the parameters you pass change what happens downstream.

How a Single Interactions API Request Becomes an Autonomous Agent Run

  1


    **Client request → unified endpoint**
Enter fullscreen mode Exit fullscreen mode

Your app sends one request. It carries either a model ID (inference) or an agent ID (autonomy), plus optional background=True for async. No separate SDKs for each mode.

↓


  2


    **Router: inference vs Managed Agent**
Enter fullscreen mode Exit fullscreen mode

If a model ID is passed, the request goes straight to Gemini inference. If an agent ID is passed, the API provisions a remote Linux sandbox — the Antigravity agent by default, or your custom agent.

↓


  3


    **Managed Agent sandbox executes**
Enter fullscreen mode Exit fullscreen mode

Inside the sandbox the agent reasons, executes code, browses the web, and manages files. Built-in tools mix with your custom tools. State is held server-side, so each step has full context.

↓


  4


    **Background execution (optional)**
Enter fullscreen mode Exit fullscreen mode

With background=True the server runs the interaction asynchronously. Your app doesn't hold an open connection for long-running tasks — you poll or subscribe for completion.

↓


  5


    **Result returned with persisted state**
Enter fullscreen mode Exit fullscreen mode

You get the final output. Server-side state means the next interaction continues from where things left off — no manual history reconstruction, no token-by-token replay of the full transcript.

The sequence matters because each stage that used to require a separate system — agent framework, sandbox, job queue, state store — now lives behind one parameterized request.

The architectural bet here is identical to what the rest of the industry calls multi-agent orchestration — but Google moved the orchestration server-side. Where LangGraph and CrewAI run the coordination graph in your process, the Interactions API runs it in Google's. That's the single most consequential design difference in this AI technology, and it cuts both ways — convenience versus control. I'd be lying if I said the tradeoff is obvious. It isn't.

Python — the simplest possible agent run

Inference: just pass a model ID

response = client.interactions.create(
model='gemini-2.5-pro',
input='Summarize Q2 sales trends.'
)

Autonomous agent: pass an agent ID instead

Antigravity ships as the default Managed Agent

run = client.interactions.create(
agent='antigravity',
input='Pull the CSV from the URL, clean it, and chart revenue.',
background=True # long-running? hand it to the server
)

Same endpoint. Three parameters. That is the whole API surface.

Notice what's missing from that code: no conversation buffer, no manual tool registry, no Celery worker, no Redis state store. Each absent line is a bug you'll never write — and a place the AI Coordination Gap can no longer hide.

Complete Capability List: Everything It Can Do

Here's the full, grounded capability set as confirmed in Google's announcement, separated from speculation.

  • Unified inference + agents — one endpoint serves both model calls (model ID) and autonomous agent runs (agent ID).

  • Server-side state — Google persists interaction state so you don't rebuild conversation history each turn.

  • Background execution — background=True runs any interaction asynchronously server-side.

  • Managed Agents — one call provisions a remote Linux sandbox capable of reasoning, code execution, web browsing, and file management.

  • Antigravity default agent — ships out of the box; no setup required to get an autonomous agent running.

  • Custom agents — define your own with instructions, skills, and data sources.

  • Tool combination — mix Google's built-in tools with your own custom tools in the same run.

  • Multimodal generation via Gemini Omni — announced as coming 'soon.'

  • Stable GA schema — the API contract is now stable, suitable for production builds.

  • Ecosystem default — all Google docs default to it; third-party SDKs are being aligned.

Speculation flag: Google did not publish benchmark latency numbers, throughput figures, or specific GA pricing in the announcement text. Any cost figures below are clearly labeled as industry estimates based on comparable Gemini API pricing, not confirmed GA pricing.

When a vendor makes its coordination layer the default interface and moves all its documentation behind it, that's not a feature launch. That's a platform declaring its center of gravity.

How to Access and Use It: Step-by-Step

The Interactions API lives inside Google AI Studio. Here's the practical path from zero to a running agent.

Step-by-step workflow showing developer provisioning a Managed Agent through the Interactions API in Google AI Studio

The implementation path: from API key in Google AI Studio to a running Antigravity Managed Agent in roughly five lines of code.

  • Get a key in Google AI Studio.

  • Install the SDK (the Google GenAI SDK; Google notes 3P SDKs are being aligned to default to Interactions).

  • Decide your mode: model ID for plain inference, agent ID for autonomy.

  • Pick an agent: use the default Antigravity agent, or define a custom one with instructions, skills, and data sources.

  • Flip background=True for anything long-running so you don't hold a connection open.

  • Poll or subscribe for results on background runs; read state directly for synchronous ones.

Below is a worked demonstration with a real sample input and the kind of output you'd get back from a Managed Agent run.

Worked demonstration — autonomous data task

INPUT

run = client.interactions.create(
agent='antigravity',
input='Fetch https://example.com/sales_q2.csv, '
'compute total revenue by region, '
'and return the top 3 regions as JSON.',
background=True
)

The server provisions a Linux sandbox, the agent:

1. browses the web to fetch the CSV

2. executes pandas code to aggregate

3. manages the file in its sandbox

4. returns structured output

result = client.interactions.get(run.id) # poll until done

OUTPUT (illustrative shape)

{

'status': 'completed',

'output': {

'top_regions': [

{'region': 'EMEA', 'revenue': 4820000},

{'region': 'AMER', 'revenue': 4110000},

{'region': 'APAC', 'revenue': 2730000}

]

}

}

For teams that don't want to wire this from scratch, you can explore our AI agent library for pre-built patterns that map cleanly onto Managed Agents and background execution.

Availability: GA as of June 25, 2026, via Google AI Studio. The announcement doesn't break out region-by-region availability or per-region pricing; assume standard Google AI Studio availability and verify in the official Gemini API docs.

When to Use It (and When NOT To)

The Interactions API is not a universal hammer. Here's the honest mapping — and I'd push back on anyone who pitches it as one-size-fits-all.

Use it when:

  • You're building primarily on Gemini and want the lowest-friction path to autonomy.

  • You need long-running, background tasks without standing up your own job queue.

  • You want code execution, web browsing, and file handling in a sandbox without managing infrastructure.

  • You're early-stage and want to avoid rebuilding orchestration plumbing from scratch — again.

Don't use it (or use it carefully) when:

  • You need full, in-process control over the orchestration graph — LangGraph still wins on deterministic control flow. This isn't close.

  • You're committed to model-agnostic infrastructure across Anthropic, OpenAI, and open models — server-side coordination ties you to Gemini.

  • You have strict data-residency or sandbox-isolation requirements that demand your own VPC.

  • You need fine-grained observability into every intermediate step (server-side execution abstracts some of this away, and you'll feel that abstraction when something goes wrong).

The trade is brutally clear: the Interactions API removes the AI Coordination Gap by removing your control over coordination. For 80% of teams that's a win. For the 20% running regulated or model-agnostic enterprise AI, that abstraction is exactly the thing they can't accept.

Head-to-Head Comparison vs the Closest Competitors

CapabilityInteractions APILangGraphAutoGenCrewAI

VendorGoogle DeepMindLangChainMicrosoftCrewAI

Orchestration locationServer-side (Google)In your processIn your processIn your process

State managementBuilt-in, server-sideYou configure (checkpointers)You configureYou configure

Background/async executionNative (background=True)DIY (you run the loop)DIYDIY

Managed sandboxYes — remote Linux per callNo (bring your own)No (bring your own)No

Model agnosticGemini-centricYesYesYes

Default agentAntigravity (built-in)NoneNoneNone

Setup to first agent~5 linesGraph + nodesAgent configsCrew + tasks

StatusGA (Jun 2026)ProductionProductionProduction

The single-row summary: Google trades control for convenience and bundles the sandbox. LangGraph and AutoGen keep you in control but make you own the plumbing. Both choices are defensible. The Coordination Gap just got a managed option. If you want pre-built blueprints for either path, our agent template gallery maps common patterns onto both server-side and in-process stacks.

What It Means for Small Businesses

If you run a small business, the relevance of this AI technology is concrete: the Interactions API drops the engineering cost of building a working AI agent from 'hire a specialist team' to 'one developer, one afternoon.'

Opportunities:

  • Automate research-heavy tasks. An Antigravity agent can browse the web, pull data, and produce a report — the kind of task you'd otherwise pay a VA $25–40/hr to do.

  • Background batch jobs. Process invoices, reconcile spreadsheets, or summarize customer emails overnight with background=True — no infrastructure to babysit.

  • No DevOps burden. The Linux sandbox is managed; you never patch a server.

Risks:

  • Vendor lock-in. Server-side state and Gemini-specific agents make switching costly later. I've seen teams underestimate this and regret it at scale.

  • Unpredictable cost on autonomous runs. An agent that browses and reasons can consume far more tokens than a single inference call — set budgets before you go anywhere near production.

  • Data exposure. Sensitive files flow through Google's sandbox; review your compliance posture.

For a five-person company, the Interactions API isn't a developer tool — it's a hiring decision you no longer have to make.

Who Are Its Prime Users

  • Senior engineers and AI leads shipping Gemini-based products who want to delete coordination boilerplate.

  • Startups (2–50 people) that can't afford a platform team to build orchestration in-house.

  • Internal-tools teams at mid-size firms automating ops, finance, and support workflows.

  • Solo builders and indie hackers shipping AI agents as products — this is probably the sweetest spot.

  • Agencies building client-facing workflow automation on top of Gemini.

Who it's not primarily for: regulated enterprises requiring on-prem isolation, and teams architecting deliberately model-agnostic stacks across OpenAI and Anthropic.

Good Practices and Common Pitfalls

  ❌
  Mistake: Running autonomous agents without cost guardrails
Enter fullscreen mode Exit fullscreen mode

A Managed Agent that browses, reasons, and executes code in a loop can burn 10–50x the tokens of a single inference call. Teams discover this on the bill, not in testing. I've watched this happen to smart engineers who absolutely should have known better.

Enter fullscreen mode Exit fullscreen mode

Fix: Cap iterations, set token budgets per interaction, and start every new agent in background mode with a hard timeout before promoting it to production traffic.

  ❌
  Mistake: Treating server-side state as a black box
Enter fullscreen mode Exit fullscreen mode

Because Google holds the state, teams stop logging their own interaction history — then can't debug or audit when an agent goes sideways. And agents do go sideways.

Enter fullscreen mode Exit fullscreen mode

Fix: Mirror critical state and tool outputs to your own store. Server-side state is convenience, not your system of record.

  ❌
  Mistake: Going all-in before GA schema is proven in your domain
Enter fullscreen mode Exit fullscreen mode

The schema is now stable, but 'stable' doesn't mean every edge case in your workflow is covered. Custom tool combinations can behave unexpectedly inside the sandbox.

Enter fullscreen mode Exit fullscreen mode

Fix: Run a 2-week shadow deployment against your existing pipeline before cutting over. Compare outputs side by side.

  ❌
  Mistake: Sending sensitive data through the managed sandbox blindly
Enter fullscreen mode Exit fullscreen mode

The Linux sandbox is Google-managed. Pushing PII or regulated data through it without reviewing data-handling terms creates compliance exposure that legal will not forgive you for.

Enter fullscreen mode Exit fullscreen mode

Fix: Redact or tokenize sensitive fields before they enter an agent run, and confirm your data-residency requirements against Google's terms.

Average Expense to Use It

Google's announcement text does not publish GA pricing, so the figures below are clearly labeled estimates based on comparable Gemini API pricing and typical agent token economics — verify against the official Gemini API pricing page before budgeting.

  • Plain inference (model ID): billed per token like standard Gemini calls. For light usage, many teams stay in the low tens of dollars per month.

  • Managed Agent runs: estimate — because agents loop (browse → reason → execute), expect 10–50x the token consumption of a single call. A genuinely autonomous task could cost $0.10–$2.00+ per run depending on complexity.

  • Background execution: async itself adds no separate confirmed fee in the announcement; you pay for the underlying compute and tokens consumed.

  • Total cost of ownership win: the real savings is engineering. Building equivalent orchestration plus sandbox plus state plus job-queue infrastructure in-house typically costs weeks of senior engineering time — easily $20K–$80K in fully loaded cost for an initial build, per typical enterprise engineering rates.

The headline saving isn't the per-token price — it's the deleted infrastructure project. If the Interactions API removes a $40K build-out and two ongoing maintenance owners, the API spend is rounding error by comparison.

Industry Impact: Who Wins, Who Loses

Winners: Gemini-native builders, small teams, and Google's platform position. By making coordination the default interface, Google increases switching costs and pulls the ecosystem toward Gemini. The announcement explicitly states Google is working to make Interactions the default across third-party SDKs — that's a platform land-grab, and it's a smart one.

Pressured: standalone orchestration frameworks. LangGraph, AutoGen, and CrewAI now have to justify why you'd run coordination in-process when a managed option exists. Their answer — control, model-agnosticism, observability — is genuinely strong, but they're defending ground now rather than defining it.

The interesting wildcard is MCP (Model Context Protocol). The Interactions API and MCP solve adjacent problems — MCP standardizes how tools connect to models; the Interactions API standardizes how you run the whole interaction. Expect convergence pressure here in the next two quarters.

$20K–$80K
Estimated in-house orchestration build cost the API can displace
[Industry estimate, 2026](https://deepmind.google/research/)




3 params
The full control surface: model ID, agent ID, background flag
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)




Default
All Google docs now default to the Interactions API
[Google, 2026](https://blog.google/innovation-and-ai/technology/developers-tools/interactions-api-general-availability/)
Enter fullscreen mode Exit fullscreen mode

[

Watch on YouTube
Google DeepMind walkthroughs of the Gemini Interactions API and Managed Agents
Google DeepMind • Interactions API architecture
Enter fullscreen mode Exit fullscreen mode

](https://www.youtube.com/results?search_query=google+gemini+interactions+api+agents)

Reactions: What the Community Is Saying

The announcement is authored by Ali Çevik (Group Product Manager, Google DeepMind) and Philipp Schmid (Developer Relations Engineer, Google DeepMind), both named on the official post. Google's own framing is the strongest stated reaction: per the post, the public beta 'quickly become developers' favorite way to build applications with Gemini.'

For balanced, independent context on the agent-framework landscape this lands in, the maintained docs of the competing systems are your best starting point — LangChain/LangGraph, Microsoft AutoGen, and CrewAI — alongside Anthropic's agent guidance and the broader practitioner discussion on Hacker News. I'm flagging explicitly that, beyond Google's own statements, broad third-party benchmark reactions weren't part of the announcement text and should be treated as forthcoming rather than confirmed.

What Happens Next: Roadmap and Predictions

Two roadmap items are confirmed by Google: Gemini Omni (multimodal generation) is coming 'soon,' and Google is actively working to make the Interactions API the default across third-party SDKs and libraries. Everything below those two facts is reasoned prediction — treat it accordingly.

2026 H2


  **Gemini Omni lands, making multimodal generation a first-class agent capability**
Enter fullscreen mode Exit fullscreen mode

Google explicitly states Omni is coming 'soon' in the GA announcement — expect agents that generate across modalities inside the same unified endpoint.

2026 H2


  **Third-party SDKs default to Interactions**
Enter fullscreen mode Exit fullscreen mode

Google states it is 'working with ecosystem partners to make it the default interface across 3P SDKs and Libraries' — this is the lever that turns a Google API into an industry interface.

2027 H1


  **Convergence pressure between managed coordination and MCP**
Enter fullscreen mode Exit fullscreen mode

As MCP standardizes tool connectivity and the Interactions API standardizes interaction runs, expect the two patterns to be reconciled — either through MCP support inside Managed Agents or a competing standard from Anthropic/OpenAI.

2027


  **In-process frameworks reposition around control and model-agnosticism**
Enter fullscreen mode Exit fullscreen mode

LangGraph, AutoGen, and CrewAI will lean harder into the features a server-side abstraction genuinely can't offer: deterministic control flow, full observability, and cross-vendor portability.

Timeline projection of Gemini Interactions API roadmap including Gemini Omni and third-party SDK adoption

The projected trajectory: from a Google API to an industry default interface as the AI Coordination Gap becomes a managed commodity.

Coined Framework

The AI Coordination Gap — Why This Launch Matters

The Interactions API is the clearest proof yet that the frontier of AI technology moved from model capability to coordination. Whoever owns the default coordination layer owns the developer relationship — and Google just claimed that layer as its primary interface.

Frequently Asked Questions

What is the Google Interactions API?

The Google Interactions API is the AI technology that became Google's primary interface for Gemini models and agents when it reached general availability on June 25, 2026. It unifies three historically separate concerns — model inference, autonomous agents, and background execution — behind a single endpoint with three parameters: a model ID for inference, an agent ID for autonomous tasks, and background=True for long-running work. It also provides server-side state and Managed Agents that provision a remote Linux sandbox in one API call. Read the official GA announcement for the confirmed details.

What is agentic AI technology?

Agentic AI technology refers to systems where a model doesn't just answer once but autonomously plans, takes actions, uses tools, and iterates toward a goal. Instead of a single prompt-response, an agent might browse the web, execute code, read files, and adjust its plan based on results. Google's Interactions API makes this concrete: passing an agent ID provisions a Managed Agent in a remote Linux sandbox that can reason, run code, browse, and manage files in a loop. Frameworks like LangGraph, AutoGen, and CrewAI implement the same idea in your own process. The defining trait is autonomy across multiple steps — the system decides what to do next rather than you scripting every move.

How does multi-agent orchestration work?

Multi-agent orchestration coordinates several specialized agents — each with its own role, tools, and instructions — so they collaborate on a larger task. A planner agent might delegate to a research agent and a coding agent, then a reviewer agent checks the output. The orchestration layer manages state, message passing, and control flow between them. LangGraph models this as a graph; AutoGen uses conversational agents; CrewAI uses role-based crews. Google's Interactions API moves much of this orchestration server-side, holding state for you and letting custom agents combine built-in and custom tools. The hard part — and the AI Coordination Gap — is reliable state and error handling across steps, not the individual model calls.

What companies are using AI agents?

AI agents are now deployed across software development, customer support, finance operations, and research workflows. The major platform vendors — Google (Gemini + Interactions API), Anthropic, OpenAI, and Microsoft (AutoGen) — both build agents and provide the tooling others use. Beyond them, startups and enterprises use frameworks like LangGraph and CrewAI to automate internal tools, document processing, and data analysis. With Google's Interactions API reaching GA and shipping the Antigravity agent as default, expect adoption to widen sharply among smaller teams who previously lacked the engineering resources to build agent infrastructure from scratch. Specific named customer lists were not part of Google's GA announcement.

What is the difference between RAG and fine-tuning?

RAG (Retrieval-Augmented Generation) retrieves relevant documents from a vector database at query time and feeds them into the model's context, so the model answers using fresh, external knowledge without changing its weights. Fine-tuning instead retrains the model on your data, baking knowledge or behavior into the weights themselves. RAG is cheaper, updatable in real time, and ideal for fast-changing facts; fine-tuning is better for teaching consistent style, format, or specialized reasoning. Many production systems combine both. In an agent context, the Interactions API lets custom agents attach data sources — a RAG-style pattern — so agents reason over your knowledge without you fine-tuning Gemini directly.

How do I get started with LangGraph?

Start at the official LangChain/LangGraph docs and the LangGraph GitHub repo. Install with pip install langgraph, then define your workflow as a graph: nodes are functions (often model calls or tool calls) and edges control flow between them. Add a checkpointer for state persistence and a conditional edge for branching logic. Begin with a simple two-node graph — a model node and a tool node — then expand. LangGraph's strength versus Google's Interactions API is that orchestration runs in your process, giving you deterministic control and full observability over every step. Use LangGraph when you need that control; use the Interactions API when you'd rather Google manage state and execution for you.

What is MCP in AI?

MCP (Model Context Protocol) is an open standard, introduced by Anthropic, for connecting AI models to external tools, data sources, and systems in a consistent way. Instead of writing bespoke integrations for every tool, you expose them through an MCP server and any MCP-compatible model can use them. It standardizes the 'how do I plug a tool into a model' problem. This sits adjacent to Google's Interactions API: MCP standardizes tool connectivity, while the Interactions API standardizes running the entire interaction (inference, agents, background execution). Expect convergence — managed agent platforms increasingly need to speak a common tool protocol, and MCP is the leading candidate. Learn more in our MCP explainer.

About the Author

Rushil Shah

AI Systems Builder & Founder, Twarx

Rushil Shah is the founder of Twarx and an AI systems builder who has spent years designing autonomous workflows, multi-agent architectures, and AI-powered business tools. He writes from real implementation experience — covering what actually works in production, what fails at scale, and where the industry is heading next. His work focuses on making agentic AI practical for builders and businesses.

LinkedIn · Full Profile


This article was originally published on Twarx. Follow for daily deep dives on AI agents and automation.

Top comments (0)