List Salesforce SObjects
sf_list_sobjectsRetrieve a paginated list of Salesforce objects, with optional filtering by name or label and inclusion of custom objects.
Instructions
Lists SObjects (standard and/or custom) available in the org. Supports filtering and pagination.
Returns JSON with: total, count, offset, has_more, next_offset (when more), sobjects[].
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sf_client_id | Yes | Salesforce Connected App Consumer Key (Client ID) | |
| sf_client_secret | Yes | Salesforce Connected App Consumer Secret (Client Secret) | |
| sf_refresh_token | Yes | Salesforce OAuth2 Refresh Token obtained after authorization | |
| sf_base_url | Yes | Salesforce org instance URL, e.g. https://myorg.my.salesforce.com (sandbox auto-detected from hostname) | |
| include_custom | No | Include custom (__c) objects | |
| filter | No | Substring filter on object name/label | |
| limit | No | Max objects to return | |
| offset | No | Pagination offset |