Skip to main content
Integrations connect external services to your workspace so that your agents can use them. When you connect Sentry, your agents can access Sentry data — triaging errors, alerting you, generating reports. The integration is just plumbing that securely connects a credential.
Integrations are not dashboards. The value isn’t “see Sentry issues in orch-hq” — it’s that your agents can now call the Sentry API with a securely stored token, automatically injected into their sandbox.

How It Works

Integrations use two-layer storage:

Available Integrations

Sentry Setup

Sentry is the first fully supported integration. Set it up in orch-hq:
  1. Open orch-hq and click Integrations in the sidebar
  2. Click Connect on the Sentry row
  3. Paste your Sentry auth token
  4. The platform verifies the token and shows your available organizations and projects
  5. Select which org and projects to monitor (or select “all”)
  6. Done — agents in this workspace can now use SENTRY_AUTH_TOKEN

Required Token Scopes

Create a token at {your-org}.sentry.io/settings/account/api/auth-tokens/ with these scopes:

Using Sentry in Your Agent

Add the secret to your agent’s orchagent.json:
Then use it in your agent code:
Do not add ORCHAGENT_SERVICE_KEY to required_secrets — it is injected automatically by the platform. Only list secrets your agent needs from external services.

API Reference

All integration endpoints are workspace-scoped and require Authorization: Bearer <api_key>.

Create an integration

List integrations

Get a single integration

Update an integration

Delete an integration

Deleting an integration also deletes its linked workspace secret.

Sentry proxy endpoints

These are used by orch-hq’s setup flow. The desktop app never touches the raw token — the gateway proxies all Sentry API requests. If Sentry returns 401, the gateway auto-marks the integration status: "error" with a message indicating the token is expired or revoked.

Next Steps

orch-hq

The desktop app where you manage integrations

Security

How orchagent handles secrets and sandboxing

SDK Reference

Full SDK documentation