airbyte_list_sources
List configured source connectors in an Airbyte workspace. Retrieve source names, IDs, types, and creation dates with pagination and workspace filtering.
Instructions
List source connectors configured in Airbyte.
Sources represent the data origins (databases, APIs, SaaS apps, etc.) that Airbyte reads from. Each source is linked to a workspace and can be paired with one or more destinations via connections.
When to Use: - Discover which source connectors are set up. - Find a source's UUID to inspect its configuration or look up related connections. - Audit sources across one or more workspaces.
When NOT to Use: - If you already have a source ID, use airbyte_get_source for full details. - To see what data a source actually moves, look at connections (airbyte_list_connections) or jobs (airbyte_list_jobs).
Returns: Paginated list of sources. Each entry includes: - name, sourceId (UUID), sourceType, workspaceId, createdAt.
Markdown format shows a heading per source with bullet fields.
JSON format returns the raw API response array.Pagination: Use limit (1–100, default 20) and offset (default 0).
Examples: List all sources in a workspace: params = { "workspace_ids": ["a1b2c3d4-..."] } List first 5 sources across all workspaces: params = { "limit": 5 } Include soft-deleted sources: params = { "include_deleted": true }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |