Load a connector provider
A connector provider registers when the manifest imports its module. Add the provider’s module to alifecycle_modules entry (importing it calls tai42_app.connectors.register_connector).
manifest.yml
Run the connect flow
1
Start a connection
Name the provider, give the connection a unique alias, and enable one or more sub-services. The command prints the authorize URL.
2
Authorize
Open the printed authorize URL in a browser and grant consent. The provider redirects back to the server’s callback, which exchanges the code and stores the tokens under the alias.
3
Confirm the connection
List the installed connections (no secrets are printed).
tai connectors sub-services, re-authorize with tai connectors reconnect, and remove a connection with tai connectors disconnect.
A connector provider carries no OAuth, probe, or launch code — it is pure descriptor data. The connector engine drives the whole flow generically from that descriptor. To build one, see Author a connector.
See also
- Connectors — what a connector is and how the engine drives it.
- Author a connector — build a provider plugin.
- Ecosystem catalog — the shipped connector providers and their repositories.
- CLI reference — the full
tai connectorssurface.

