← Back to Blogs
HN Story

Solving the Agentic Data Gap: Introducing Airbyte Agents

May 9, 2026

Solving the Agentic Data Gap: Introducing Airbyte Agents

For AI agents to move from simple chat interfaces into real-world business workflows, they need access to operational data—the kind stored in Slack, Salesforce, Linear, and Zendesk. However, providing this access is rarely as simple as plugging in an API.

Most current implementations rely on Model Context Protocol (MCP) servers, which often act as thin wrappers over existing APIs. While useful, this approach forces agents to inherit the limitations of those APIs: complex authentication, pagination, rigid schemas, and the need for specific Object IDs. The result is an "agentic loop" where the AI spends more time navigating API plumbing than actually reasoning over data.

The Problem: The 47-Step Trace

Michel Tricot, co-founder and CEO of Airbyte, highlights a critical failure point in current agent design through a real-world example. An agent tasked with answering a seemingly simple question—"Which customers are at risk of leaving this quarter?"—resulted in a trace of 47 distinct steps.

Most of these steps were repetitive API calls: finding accounts, mapping them to customers, and searching for support tickets. By the time the agent reached a conclusion, the process was excruciatingly slow, and the final answer was incorrect. This happens because agents are often forced to discover what matters at runtime, leading to high token consumption and a high probability of hallucination or error.

Introducing Airbyte Agents and the Context Store

To solve this, Airbyte has launched Airbyte Agents, a unified data layer designed to provide agents with the necessary context before they begin reasoning. The centerpiece of this architecture is the Context Store.

Unlike a live API call, the Context Store is a data index optimized for agentic search, populated by Airbyte's existing library of replication connectors. This shifts the burden of data discovery from the agent's runtime to a pre-indexed layer.

This architecture allows agents to:

  1. Discover data efficiently: Use a structured index to find relevant entities without guessing API endpoints.
  2. Reduce Latency: Eliminate the need for dozens of sequential API calls to assemble context.
  3. Maintain Direct Access: While the index handles discovery, agents can still read and write directly to upstream systems when a specific action is required.

Benchmarking Performance: Tokens as a Proxy for Success

To validate this approach, Airbyte developed a benchmark harness comparing the Airbyte Agent MCP against various vendor-specific MCPs. Using token consumption as a proxy for efficiency (where fewer tokens typically indicate a more direct path to the correct answer), the results were significant:

  • Zendesk: Up to 90% fewer tokens.
  • Gong: Up to 80% fewer tokens.
  • Linear: Up to 75% fewer tokens.
  • Salesforce: Up to 16% fewer tokens (noting that Salesforce's native SOQL is already highly efficient).

One primary driver for these gains, particularly in the Zendesk example, is the ability to filter data. While some community MCPs return entire API responses (averaging 9KB per record), Airbyte’s implementation allows agents to retrieve only the minimal data needed for the task.

Community Perspectives and Technical Challenges

The launch has sparked a technical dialogue regarding the future of agentic data access. Several key themes emerged from the community discussion:

The "ETL for AI" Debate

Some observers noted that this approach essentially brings data engineering back to the forefront of AI. As one commenter pointed out, "You built an ETL pipeline and called it an agent." This highlights a broader trend: AI engineers often lack the data engineering background to understand the tradeoffs of ETL pipelines, yet their applications are increasingly data-hungry.

Data Freshness and Synchronization

A recurring concern is the volatility of operational data. If an agent relies on an index (the Context Store), there is a risk that the data becomes stale. The challenge lies in balancing incremental replication with the need for real-time accuracy—determining when an agent should trust the index versus when it must perform a live API read.

Authorization and Security

As agents gain the ability to query across multiple systems, the complexity of data authorization increases. Ensuring that an agent only accesses data the user is permitted to see across disparate systems (like Salesforce and GitHub) remains a non-trivial hurdle for any unified context layer.

Final Thoughts

Airbyte Agents represents a shift from "live API hunting" to "indexed context retrieval." By leveraging six years of connector expertise, Airbyte is attempting to turn the chaotic process of multi-source data retrieval into a structured, efficient operation. For developers building agents, the goal is clear: reduce the distance between the question and the data, minimizing the "plumbing" so the LLM can focus on the reasoning.

References

HN Stories

  • #48023496 Show HN: Airbyte Agents – context for agents across multiple data sources Discussion ↗