airbyte-sdk-reference
Airbyte SDK Reference
Reference documentation for the Airbyte per-connector typed SDK packages. Use for SDK API details, PydanticAI patterns, and Claude SDK patterns.
Contents
- SDK API — public API surface:
configure(),connect(),Workspace,tool_utils,list_entities(),entity_schema(). - Connector discovery — enumerating available connectors and locating per-connector documentation.
- PydanticAI patterns — wiring typed connectors into PydanticAI agents.
- Claude SDK patterns — wiring typed connectors into the Anthropic Python SDK.
More from airbytehq/airbyte-agent-sdk
discovering-connectors
Discovers available Airbyte connectors, explores their entities/actions/schemas, and checks auth requirements. Use when asking what connectors exist, what a connector can do, or what fields/entities are available.
3bootstrapping-agent
Wires up an Airbyte connector for use in a PydanticAI or Claude SDK agent. Generates auth config, connector initialization, and tool_utils-decorated tool function. Use when adding a connector to an agent or setting up a new agent with a connector.
3building-multi-connector-agent
Builds a complete agent with multiple Airbyte connectors using PydanticAI or Claude SDK. Scaffolds project structure, wires up connectors, composes tools, and creates a run loop. Use when building an agent with multiple connectors or scaffolding a new agent project.
3