Skip to main content

Sentry authentication

This page documents the authentication and configuration options for the Sentry agent connector.

Hosted mode (most cases)​

In hosted mode, create the connector through the Airbyte Agent CLI or API, then execute operations using the CLI, Python SDK, or API. If you need a step-by-step guide, see the developer quickstart.

OAuth​

This authentication method isn't available for this connector.

Token​

Create a connector with Token credentials.

credentials fields you need:

Field NameTypeRequiredDescription
auth_tokenstrYesSentry authentication token. Log into Sentry and create one at Settings > Account > API > Auth Tokens.

replication_config fields you need:

Field NameTypeRequiredDescription
organizationstrYesThe slug of the organization to replicate data from.
projectstrYesThe slug of the project to replicate data from.

Example request:

curl -X POST "https://api.airbyte.ai/api/v1/integrations/connectors" \
-H "Authorization: Bearer <YOUR_BEARER_TOKEN>" \
-H "Content-Type: application/json" \
-d '{
"workspace_name": "<WORKSPACE_NAME>",
"connector_type": "Sentry",
"name": "My Sentry Connector",
"credentials": {
"auth_token": "<Sentry authentication token. Log into Sentry and create one at Settings > Account > API > Auth Tokens.>"
},
"replication_config": {
"organization": "<The slug of the organization to replicate data from.>",
"project": "<The slug of the project to replicate data from.>"
}
}'

Execution​

After creating the connector, execute operations using the CLI, Python SDK, or API. If your Airbyte client can access multiple organizations, set the default organization with airbyte-agent organizations use, include organization_id in AirbyteAuthConfig, or include X-Organization-Id in raw API calls.

CLI

Authenticate with Airbyte:

airbyte-agent login

Create the connector. The CLI opens the hosted setup flow:

airbyte-agent connectors create --json '{
"workspace": "<your_workspace_name>",
"name": "sentry"
}'

Describe the connector to see its supported entities and actions:

airbyte-agent connectors describe --json '{
"workspace": "<your_workspace_name>",
"name": "sentry"
}'

Execute an action:

airbyte-agent connectors execute --json '{
"workspace": "<your_workspace_name>",
"name": "sentry",
"entity": "<entity>",
"action": "<action>",
"params": {}
}'

Python SDK

The connect() factory returns a fully typed SentryConnector and reads AIRBYTE_CLIENT_ID / AIRBYTE_CLIENT_SECRET from the environment:

The recommended pattern is build_connector_tools, which gives the agent three tools bound to this connector: inspect_connector, read_skill_docs, and execute. The agent can inspect the connector, read only the skill-doc section it needs, and then execute:

inspect_connector() -> read_skill_docs() -> read_skill_docs(section="...") -> execute(entity, action, params)

Pass section IDs verbatim as the outline lists them, prefix included (actions.<entity>.<action>, not <entity>.<action>); anything else returns an error the agent has to recover from.

The builder names its tools inspect_connector, read_skill_docs, and execute, so the tool sets for more than one connector collide when registered on the same agent. Renaming the callables at registration avoids the collision, but the generated execute guidance still names inspect_connector and read_skill_docs, pointing the model at the wrong tools. Use the agent_tool pattern below instead: it weaves your own names into that guidance.

Pydantic AI
from airbyte_agent_sdk import build_connector_tools
from pydantic_ai import Agent
from airbyte_agent_sdk import connect
from airbyte_agent_sdk.connectors.sentry import SentryConnector

connector = connect("sentry", workspace_name="<your_workspace_name>")

tools = build_connector_tools(connector, framework="pydantic_ai")
agent = Agent("openai:gpt-4o", tools=tools.as_list())

Custom tool bodies​

When you need custom tool bodies — or a framework without native support — use SentryConnector.agent_tool. Register execute, inspect, and docs together so the agent can fetch connector guidance progressively. Pass the framework explicitly when it has a supported failure strategy:

Pydantic AI
from pydantic_ai import Agent
from airbyte_agent_sdk import connect
from airbyte_agent_sdk.connectors.sentry import SentryConnector

connector = connect("sentry", workspace_name="<your_workspace_name>")

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

@agent.tool_plain
@SentryConnector.agent_tool(
framework="pydantic_ai",
inspect_tool="sentry_inspect",
docs_tool="sentry_read_docs",
)
async def sentry_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})

@agent.tool_plain
@SentryConnector.agent_tool(framework="pydantic_ai")
async def sentry_inspect():
return await connector.inspect_connector()

@agent.tool_plain
@SentryConnector.agent_tool(framework="pydantic_ai")
async def sentry_read_docs(section: str | None = None):
return await connector.read_skill_docs(section)

Use the same three-function pattern with framework="langchain", "openai_agents", or "mcp" and that framework's registration decorator. Each value translates connector failures into the framework's own signal:

framework=Tool failures surface as
"pydantic_ai"pydantic_ai.ModelRetry
"langchain"langchain_core.tools.ToolException (set handle_tool_error=True to feed it back to the model)
"openai_agents"the failure message returned to the model as the tool result
"mcp"fastmcp.exceptions.ToolError
"none" (default)airbyte_agent_sdk.AirbyteToolError

On a framework the SDK does not support natively — or in a raw LLM dispatch loop — omit framework= and handle AirbyteToolError yourself:

No framework
from airbyte_agent_sdk import AirbyteToolError
from airbyte_agent_sdk import connect
from airbyte_agent_sdk.connectors.sentry import SentryConnector

connector = connect("sentry", workspace_name="<your_workspace_name>")

@SentryConnector.agent_tool(
inspect_tool="sentry_inspect",
docs_tool="sentry_read_docs",
)
async def sentry_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})

@SentryConnector.agent_tool()
async def sentry_inspect():
return await connector.inspect_connector()

@SentryConnector.agent_tool()
async def sentry_read_docs(section: str | None = None):
return await connector.read_skill_docs(section)

# Advertise all three to the model, using each function's docstring as its description.
handlers = {
fn.__name__: fn
for fn in (sentry_inspect, sentry_read_docs, sentry_execute)
}

# `tool_name` and `tool_args` come from the model's tool call in your dispatch loop.
try:
tool_result = await handlers[tool_name](**tool_args)
except AirbyteToolError as err:
tool_result = str(err) # hand the message back to the model as an errored tool result

Each function's docstring carries the guidance the model needs, so pass it through as the tool description wherever you register it.

Legacy alternatives​

These examples are kept for existing integrations. The deprecated SentryConnector.tool_utils pattern loads the connector's full generated catalog into one broad execute tool description instead of letting the agent read skill docs on demand. For new code, use build_connector_tools or SentryConnector.agent_tool above.

Pydantic AI
from pydantic_ai import Agent
from airbyte_agent_sdk import connect
from airbyte_agent_sdk.connectors.sentry import SentryConnector

connector = connect("sentry", workspace_name="<your_workspace_name>")

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

@agent.tool_plain
@SentryConnector.tool_utils
async def sentry_execute(entity: str, action: str, params: dict | None = None):
return await connector.execute(entity, action, params or {})

Or pass credentials explicitly (equivalent, useful when you're not loading them from the environment):

Pydantic AI
from airbyte_agent_sdk import build_connector_tools
from pydantic_ai import Agent
from airbyte_agent_sdk.connectors.sentry import SentryConnector
from airbyte_agent_sdk.types import AirbyteAuthConfig

connector = SentryConnector(
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>"
)
)

tools = build_connector_tools(connector, framework="pydantic_ai")
agent = Agent("openai:gpt-4o", tools=tools.as_list())

API

curl -X POST 'https://api.airbyte.ai/api/v1/integrations/connectors/<connector_id>/execute' \
-H 'Authorization: Bearer <YOUR_BEARER_TOKEN>' \
-H 'X-Organization-Id: <YOUR_ORGANIZATION_ID>' \
-H 'Content-Type: application/json' \
-d '{"entity": "<entity>", "action": "<action>", "params": {}}'

Open source mode​

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

OAuth​

This authentication method isn't available for this connector.

Token​

credentials fields you need:

Field NameTypeRequiredDescription
auth_tokenstrYesSentry authentication token. Log into Sentry and create one at Settings > Account > API > Auth Tokens.

Example request:

from airbyte_agent_sdk.connectors.sentry import SentryConnector
from airbyte_agent_sdk.connectors.sentry.models import SentryAuthConfig

connector = SentryConnector(
auth_config=SentryAuthConfig(
auth_token="<Sentry authentication token. Log into Sentry and create one at Settings > Account > API > Auth Tokens.>"
),
hostname="<Host name of Sentry API server. For self-hosted instances, specify your host name here. Otherwise, leave as sentry.io.>"
)

Configuration​

The Sentry connector also needs these configuration values to construct the base API URL.

  • Hosted CLI: airbyte-agent connectors create doesn't currently accept these configuration fields directly. For hosted connectors that need these values, create the connector with the hosted API replication_config, then use the CLI for describe and execute operations after creation.
  • Hosted API: pass these values in the connector creation replication_config.
  • Open source mode: provide these values with your local connector setup so the connector can build the correct API base URL.
VariableTypeRequiredDefaultDescription
hostnamestringYessentry.ioHost name of Sentry API server. For self-hosted instances, specify your host name here. Otherwise, leave as sentry.io.