Skip to main content
This guide shows you how to browse the registry of pre-built connectors maintained by Corti and partners. You will learn how to search for connectors, inspect their details, and use them in your agents.

Prerequisites

  • An access token or client credentials
  • Understanding of connectors

List registry connectors

Searching

The q free-text search parameter is in private preview — accepted by the API but silently ignored.
Use the q parameter for free-text search over connector names and descriptions:

Pagination

The registry list endpoint supports pageSize and pageToken query parameters. The response includes nextPageToken (opaque cursor for the next page) and totalSize (not currently populated by the server — treat as absent).

Get a registry connector

The response includes:
The version, provider, capabilities, tags, and documentationUrl fields are in private preview — declared in the schema but not yet populated. Only id, type, name, title, description, and configSchema are returned.

Using a registry connector

When you find a registry connector you want to use, attach it to an agent by referencing its id as the name field:
The config object is validated against the registry connector’s configSchema. If your config doesn’t match the schema, the request will be rejected.

Available registry connectors

For a catalog of available registry connectors with detailed documentation, see the Registry Connectors section.

Next steps