describe_object
Retrieve the complete metadata schema for a Salesforce object, optionally including all standard and custom fields, with filtering by business intent and pagination support.
Instructions
Get an object's full metadata, including every standard and custom field when includeFields is true. Returns the complete schema — exhaustive but unranked, and large on customised objects. To find out which fields this org actually populates, read salesforce://field-catalog/{objectName} instead; it is ranked and far smaller.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| intent | No | Business intent — filters fields to only those relevant for this use case. | |
| pageSize | No | Number of fields per page when includeFields is true (default: 50) | |
| objectName | Yes | API name of the Salesforce object | |
| pageNumber | No | Page number to retrieve when includeFields is true (default: 1) | |
| includeFields | No | Whether to include field metadata (default: false). When true, returns all available fields including custom fields, their types, and relationships. |