Give agents tools for secure, real-time access to fetch, search, write, and sync across every system, with replication, entity mapping, and auth built-in.


About this Connector
The Granola API connector provides read access to meeting notes from Granola, an AI-powered meeting notes platform. This connector integrates with the Granola Enterprise API to list and retrieve notes, including summaries, transcripts, attendees, and calendar event details.
CRM
Sales Analytics
Customer Data
Version Information
Package version
0.1.3
Connector version
1.0.1
SDK commit
cb4380e76ac5cbc67b9089f94522be1bbe9f8d73
Support Open Source
Check us out on Github and join the Airbyte community
Installation & Usage
1
Install Package
Using uv or pip
bash
uv pip install airbyte-agent-granola
2
Import
Initialize and use
python
from airbyte_agent_granola import GranolaConnector
from airbyte_agent_granola.models import GranolaAuthConfig
connector = GranolaConnector(
auth_config=GranolaAuthConfig(
api_key="<Granola Enterprise API key generated from Settings > Workspaces > API tab>"
)
)3
Tool
Add tools to your agent
python
@agent.tool_plain # assumes you're using Pydantic AI
@GranolaConnector.tool_utils
async def granola_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| Notes | [List](./REFERENCE.md#notes-list), [Get](./REFERENCE.md#notes-get), [Search](./REFERENCE.md#notes-search) |
Example Prompts
Lorem ipsum
List all meeting notes from Granola - Show me recent meeting notes - Get the details of a specific note - List notes created in the last week - Find meeting notes from last month - Which meetings had the most attendees? - Show me notes that mention budget reviews - What meetings happened this quarter?
Why Airbyte for AI Agents?
Built for production AI workloads with enterprise-grade reliability
Agent-Native Design
Structured, LLM-friendly schemas optimized for AI agent consumption with natural language query support.
Secure Authentication
Built-in OAuth 2.0 handling with automatic token refresh. No hard-coded credentials.
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
🦙
LlamaIndex
🤖
CrewAI
⚡
AutoGen
🧠
OpenAI Agents SDK
🔮
Claude Agents SDK
Frequently Asked Questions
Didn't find your answer? Please don't hesitate to reach out.
The Granola connector supports two authentication methods: Open source mode, where you provide a Granola Enterprise API key directly (generated from Settings > Workspaces > API tab); and Hosted mode, where credentials are stored securely in Airbyte Cloud using your Airbyte client ID, client secret, customer name, and optional organization ID.
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?
No, the Granola connector currently only supports read operations. Write operations such as creating, deleting, updating, or sharing meeting notes 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.
Will there be a platform for agent connectors?
The hosted version with secure credential storage through Airbyte Cloud is already available. See the hosted usage section in the documentation for setup instructions.