describe_object
Retrieve metadata for a Salesforce object and discover its standard and custom fields, including API names—ideal for identifying custom fields ending in __c.
Instructions
Get metadata about a Salesforce object, including both standard and custom fields when includeFields is true. Use this to discover available fields and their API names, especially useful for finding custom fields (ending in __c)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| objectName | Yes | API name of the Salesforce object | |
| includeFields | No | Whether to include field metadata (default: false). When true, returns all available fields including custom fields, their types, and relationships. | |
| pageSize | No | Number of fields per page when includeFields is true (default: 50) | |
| pageNumber | No | Page number to retrieve when includeFields is true (default: 1) | |
| intent | No | Business intent — filters fields to only those relevant for this use case. |