1. Conduid
  2. AI
  3. Airbyte Agent Connectors
MCP server · AI

Airbyte Agent Connectors

🐙 Drop-in tools that give AI agents reliable, permission-aware access to external systems.

Unclaimed NOASSERTION last commit 6 months ago connectorsanthropicdataai-agentsgeminienterpriseairbyteai
80Excellent

Scored 3 hours ago · breakdown

About Airbyte Agent Connectors

Airbyte Agent Connectors is an MCP server published by airbytehq in the AI category: 🐙 Drop-in tools that give AI agents reliable, permission-aware access to external systems. It has been installed 0 times through Conduid.

The repository has 107 stars and 7 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx airbyte-agent-connectors

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Airbyte Agent Connectors

Powered by Claude · Grounded in docs

I know everything about Airbyte Agent Connectors. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.1.337v0.1.337 · 2 Sep 2026Synced from `airbyte-embedded@d2caee7f18edeecbf4bd6898d87da1ed6daa045a`. Install: `uv pip install airbyte-agent-sdk==0.1.337` Full Changelog**: https://github.com/airbytehq/airbyte-agent-sdk/compare/v0.1.336...v0.1.337
v0.1.336v0.1.336 · 31 Aug 2026Synced from `airbyte-embedded@be6e452e15de42d2f2b55b359e2bae3116c88df6`. Install: `uv pip install airbyte-agent-sdk==0.1.336` Full Changelog**: https://github.com/airbytehq/airbyte-agent-sdk/compare/v0.1.335...v0.1.336
v0.1.335v0.1.335 · 28 Aug 2026Synced from `airbyte-embedded@82d88299218529080217f533f5762994de8cb151`. Install: `uv pip install airbyte-agent-sdk==0.1.335` Full Changelog**: https://github.com/airbytehq/airbyte-agent-sdk/compare/v0.1.334...v0.1.335
v0.1.334v0.1.334 · 28 Aug 2026Synced from `airbyte-embedded@537a5c558fe6d4d2977dd9e0cb77b782c86ac9c6`. Install: `uv pip install airbyte-agent-sdk==0.1.334` Full Changelog**: https://github.com/airbytehq/airbyte-agent-sdk/compare/v0.1.333...v0.1.334
v0.1.333v0.1.333 · 27 Aug 2026Synced from `airbyte-embedded@0c9373a1d880b4f54180cd23db760e7da3e126f4`. Install: `uv pip install airbyte-agent-sdk==0.1.333` Full Changelog**: https://github.com/airbytehq/airbyte-agent-sdk/compare/v0.1.332...v0.1.333

README

Airbyte Agent SDK

Type-safe connector execution framework with blessed connectors and full IDE autocomplete.

Overview

The Airbyte Agent SDK gives AI agents access to 50+ third-party APIs through strongly typed, well-documented tools. Connectors can run through the Airbyte platform (which manages credentials, rate limiting, and execution) or locally in OSS mode.

How to install

uv pip install airbyte-agent-sdk

Documentation

Full documentation is available at docs.airbyte.com/ai-agents/about/.

Tool integration

The SDK ships two decorators for turning a connector call into an LLM tool with retry-aware exception translation, output-size guards, and framework-specific error signalling.

  • @<Connector>.tool_utils — preferred for typed connectors. Auto-detects the installed framework (pydantic-ai, LangChain, OpenAI Agents, or FastMCP) and composes translate_exceptions under the hood. Pass framework="..." to override auto-detection. Forwards update_docstring, max_output_chars, framework, internal_retries, should_internal_retry, and exhausted_runtime_failure_message.
  • @translate_exceptions — same translation behaviour for any callable that is not a generated Connector (custom helpers, eval harnesses, ad-hoc tools).

Both decorators preserve sync/async, __name__, and __doc__. Transient runtime failures (429/5xx, network, timeout) can be retried silently via internal_retries=N on either decorator. Output exceeding max_output_chars (default 100 KB) is converted to the framework's retry signal so the LLM can narrow the query.

Pick one decorator per tool. Stacking @translate_exceptions over @<Connector>.tool_utils (or vice versa) is detected at decoration time: the inner layer is preserved and the outer layer logs a warning and short-circuits, so double-translation is impossible.

pydantic-ai

from pydantic_ai import Agent
from airbyte_agent_sdk.connectors.stripe import StripeConnector

agent = Agent("openai:gpt-4o")

@agent.tool_plain
@StripeConnector.tool_utils
async def list_customers(limit: int = 10) -> list[dict]:
    async with StripeConnector(connector_id="src_123") as stripe:
        result = await stripe.execute("customers", "list", params={"limit": limit})
        return result.data

Failures raise pydantic_ai.ModelRetry so the agent can retry with corrected arguments.

LangChain

from langchain_core.tools import StructuredTool
from airbyte_agent_sdk.connectors.stripe import StripeConnector

@StripeConnector.tool_utils(framework="langchain")
async def list_customers(limit: int = 10) -> list[dict]:
    async with StripeConnector(connector_id="src_123") as stripe:
        result = await stripe.execute("customers", "list", params={"limit": limit})
        return result.data

tool = StructuredTool.from_function(
    coroutine=list_customers,
    name="list_customers",
    description="List Stripe customers.",
    handle_tool_error=True,  # surfaces ToolException as the tool's string result
)

Failures raise langchain_core.tools.ToolException; handle_tool_error=True turns that into the tool's string result for the LLM.

Alternative for non-typed callables: replace @StripeConnector.tool_utils(framework="langchain") with @translate_exceptions(framework="langchain") from airbyte_agent_sdk.

OpenAI Agents

from agents import Agent, function_tool
from airbyte_agent_sdk.connectors.stripe import StripeConnector

@function_tool
@StripeConnector.tool_utils(framework="openai_agents")
async def list_customers(limit: int = 10) -> list[dict]:
    async with StripeConnector(connector_id="src_123") as stripe:
        result = await stripe.execute("customers", "list", params={"limit": limit})
        return result.data

agent = Agent(name="stripe", tools=[list_customers])

Note: the OpenAI Agents strategy uses catch-and-return-string semanticstool_utils catches the failure and returns a string (e.g. "ConnectorValidationError: entity must be one of: ...") instead of raising. The OpenAI runner serialises this string verbatim into the tool result the LLM sees.

Alternative for non-typed callables: replace @StripeConnector.tool_utils(framework="openai_agents") with @translate_exceptions(framework="openai_agents") from airbyte_agent_sdk.

FastMCP

from fastmcp import FastMCP
from airbyte_agent_sdk.connectors.stripe import StripeConnector

mcp = FastMCP("stripe-tools")

@mcp.tool()
@StripeConnector.tool_utils(framework="mcp")
async def list_customers(limit: int = 10) -> list[dict]:
    async with StripeConnector(connector_id="src_123") as stripe:
        result = await stripe.execute("customers", "list", params={"limit": limit})
        return result.data

Failures raise fastmcp.exceptions.ToolError, which FastMCP serialises as an MCP error response to the client.

See the translate_exceptions reference for advanced kwargs (internal_retries, should_internal_retry, exhausted_runtime_failure_message).

How to install the skills

The repo ships skills that walk agents through setting up and using the connectors. Three install paths:

skills.sh (works for Claude Code, Codex, Cursor, OpenCode, and 40+ other agents):

npx skills add airbytehq/airbyte-agent-sdk

Claude Code (native plugin):

/plugin marketplace add airbytehq/airbyte-agent-sdk
/plugin install airbyte-agent-sdk@airbyte-agent-sdk

Codex (clone + symlink):

git clone https://github.com/airbytehq/airbyte-agent-sdk ~/.codex/skills/airbyte-agent-sdk-src
ln -s ~/.codex/skills/airbyte-agent-sdk-src/connector-sdk/.claude/skills/* ~/.codex/skills/

See docs.airbyte.com/ai-agents/about/ for full documentation.

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About Airbyte Agent Connectors

How do I install Airbyte Agent Connectors?

Run npx airbyte-agent-connectors, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Airbyte Agent Connectors safe to use with an AI agent?

Its trust score is 80 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Airbyte Agent Connectors still maintained?

Yes — the latest release is v0.1.337 (2 Sep 2026), and the last commit was 6 months ago. The repository has 107 stars and 0 open issues.