Installation & Usage
[01]
Install Package
Using uv or pip
BASH
uv pip install airbyte-agent-airtable
[02]
Import
Initialize and use
PYTHON
from pydantic_ai import Agent
from airbyte_agent_sdk.connectors.airtable import AirtableConnector
from airbyte_agent_sdk.connectors.airtable.models import AirtableAuthConfig
connector = AirtableConnector(
auth_config=AirtableAuthConfig(
personal_access_token=(
"<Airtable Personal Access Token. "
"See https://airtable.com/developers/web/guides/personal-access-tokens>"
)
)
)
agent = Agent("openai:gpt-4o")
[03]
Tool
Add tools to your agent
python
@agent.tool_plain
@AirtableConnector.tool_utils
async def airtable_execute(
entity: str,
action: str,
params: dict | None = None,
):
return await connector.execute(entity, action, params or {})
Supported Entities & Actions
Lorem ipsum
Lorem ipsum
| Entity | Actions |\n|--------|---------|\n| Bases | [List](./REFERENCE.md#bases-list), [Search](./REFERENCE.md#bases-search) |\n| Tables | [List](./REFERENCE.md#tables-list), [Search](./REFERENCE.md#tables-search) |\n| Records | [List](./REFERENCE.md#records-list), [Get](./REFERENCE.md#records-get) |
Example Prompts
Lorem ipsum
List all my Airtable bases - What tables are in my first base? - Show me the schema for tables in a base - List records from a table in my base - Show me recent records from a table - What fields are in a table? - List records where Status is 'Done' in table tblXXX - Find records created last week in table tblXXX - Show me records updated in the last 30 days in base appXXX
Why Airbyte for AI Agents?
Built for production AI workloads with enterprise-grade reliability
Secure Authentication
Built-in OAuth 2.0 handling with automatic token refresh. No hard-coded credentials.
Agent-Native Design
Heading
Structured, LLM-friendly schemas optimized for AI agent consumption with natural language query support.
Production Ready
Battle-tested connectors with comprehensive error handling, logging, and retry logic.
Open Source
Fully open source under the MIT license. Contribute, customize, and extend freely.
Works with your favorite frameworks
LangChain
CrewAI
LlamaIndex
AutoGen
OpenAI Agents SDK
Claude Agents SDK
Frequently Asked Questions
Didn't find your answer? Please don't hesitate to reach out.
The Airtable connector supports authentication via a Personal Access Token. You provide your Airtable Personal Access Token directly when using open source mode. In hosted mode, credentials are stored securely in Airbyte Cloud and you authenticate using your Airbyte client credentials instead.
Can I use this connector with any AI agent framework?
The connector is compatible with any Python-based AI agent framework including LangChain, LlamaIndex, CrewAI, Pydantic AI, and custom implementations.
Does this connector support write operations?
Currently, the Airtable connector only supports read operations. Write operations such as creating, updating, or deleting records, creating new tables, or modifying table schemas are not supported at this time.
How is this different from the Airbyte data connector?
Agent connectors are specifically designed for AI agents and LLM applications. They provide natural language interfaces, optimized response formats, and seamless integration with agent frameworks, unlike traditional ETL-focused connectors.
Get started in minutes with our open-source connector.