Supported services
New connectors ship regularly. The picker in the app shows the current set.
Creating a connector
Settings → Connections → New:- Pick the service.
- Auth via OAuth (most services) or paste credentials directly (databases, S3, generic HTTP).
- Give it a memorable name.
- Optionally scope it (specific folder, bucket, channel) — narrower scopes reduce accidental exposure.
From the CLI
nora connectors.
Using a connector
In any block that consumes the service (Source block in a pipeline, Tool block in a Flow), pick the connector from the dropdown. The block surfaces service-specific config (which folder, which channel, which SQL) but the credentials come from the connector.Testing
Every connector has a Test button (ornora connectors invoke <id> ping from CLI). Runs a read-only probe (list a folder, count messages in a channel, SELECT 1). Green means credentials are valid.
Rotating credentials
Settings → Connections → [connector] → Rotate. Or:Least privilege
Recommended:- OAuth connectors default to the narrowest scope that supports read-only access.
- For databases, create a Nora-only user with
SELECTon specific schemas. - For S3, use an IAM policy scoped to a single prefix.
- For webhooks, use per-endpoint tokens rather than a workspace-wide bearer.
Deletion
Deleting fails if any Flow or Pipeline still references the connector. The error names the blockers so you know what to update first. Deletion is audited (see Audit trail).Custom auth
For services not in the picker, use the HTTP (generic) connector. Supports:- API key (
X-API-Keyor custom header). - Bearer token.
- Basic auth.
- OAuth 2.0 client credentials.
- Signed requests via a small pre-request script (advanced).
Connector vs. Tool: which surface?
- Connector — reusable credentials, especially when many Flows share the same service.
- Tool block — inline; the credential lives on the Tool. Fine for one-off integrations wired directly into one Flow.
Related
nora connectors— full CLI reference.- Foundry Connectors — how pipelines consume connectors.
- Google Workspace walkthrough — focused setup for the most common connector.
- MCP — for coding agents driving Nora.