Skip to main content

Sendgrid

The Sendgrid agent connector is a Python package that equips AI agents to interact with Sendgrid through strongly typed, well-documented tools. It's ready to use directly in your Python app, in an agent framework, or exposed through an MCP.

Connector for the Twilio SendGrid v3 API. Provides read access to marketing campaigns, contacts, lists, segments, single sends, transactional templates, and suppression management (bounces, blocks, spam reports, invalid emails, global suppressions, suppression groups, and suppression group members).

Example questions

The Sendgrid connector is optimized to handle prompts like these.

  • List all marketing contacts
  • Get the details of a specific contact
  • Show me all marketing lists
  • List all transactional templates
  • Show all single sends
  • List all bounced emails
  • Show all blocked email addresses
  • List all spam reports
  • Show all suppression groups
  • How many contacts are in each marketing list?
  • Which single sends were scheduled in the last month?
  • What are the most common bounce reasons?
  • Show me contacts created in the last 7 days

Unsupported questions

The Sendgrid connector isn't currently able to handle prompts like these.

  • Send an email
  • Create a new contact
  • Delete a bounce record
  • Update a marketing list

Installation

uv pip install airbyte-agent-sdk

Usage

Connectors can run in open source or hosted mode.

Open source

In open source mode, you provide API credentials directly to the connector.

from airbyte_agent_sdk.connectors.sendgrid import SendgridConnector
from airbyte_agent_sdk.connectors.sendgrid.models import SendgridAuthConfig

connector = SendgridConnector(
auth_config=SendgridAuthConfig(
api_key="<Your SendGrid API key (generated at https://app.sendgrid.com/settings/api_keys)>"
)
)

@agent.tool_plain # assumes you're using Pydantic AI
@SendgridConnector.tool_utils
async def sendgrid_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})

Hosted

In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead. If your Airbyte client can access multiple organizations, also set organization_id.

This example assumes you've already authenticated your connector with Airbyte. See Authentication to learn more about authenticating. If you need a step-by-step guide, see the hosted execution tutorial.

from airbyte_agent_sdk.connectors.sendgrid import SendgridConnector, AirbyteAuthConfig

connector = SendgridConnector(
auth_config=AirbyteAuthConfig(
workspace_name="<your_workspace_name>",
organization_id="<your_organization_id>", # Optional for multi-org clients
airbyte_client_id="<your-client-id>",
airbyte_client_secret="<your-client-secret>"
)
)

@agent.tool_plain # assumes you're using Pydantic AI
@SendgridConnector.tool_utils
async def sendgrid_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})

Full documentation

Entities and actions

This connector supports the following entities and actions. For more details, see this connector's full reference documentation.

EntityActions
ContactsList, Get, Context Store Search
ListsList, Get, Context Store Search
SegmentsList, Get, Context Store Search
CampaignsList, Context Store Search
SinglesendsList, Get, Context Store Search
TemplatesList, Get, Context Store Search
Singlesend StatsList, Context Store Search
BouncesList, Context Store Search
BlocksList, Context Store Search
Spam ReportsList
Invalid EmailsList, Context Store Search
Global SuppressionsList, Context Store Search
Suppression GroupsList, Get, Context Store Search
Suppression Group MembersList, Context Store Search

Authentication

For all authentication options, see the connector's authentication documentation.

Sendgrid API docs

See the official Sendgrid API reference.

Version information

  • Package version: 1.0.3
  • Connector version: 1.0.3
  • Generated with Connector SDK commit SHA: unknown