List Salesforce Objects
salesforce_list_objectsList all standard and custom Salesforce objects in your org, with optional filtering by name or label, and control over queryable-only status, limit, and output format.
Instructions
List all available Salesforce objects (standard and custom) in the org.
Use this to discover what objects exist before querying or manipulating data.
Args:
filter (string): Optional text to filter object names/labels (case-insensitive)
queryable_only (boolean): If true, only return objects that support SOQL queries (default: true)
limit (number): Maximum number of objects to return (default: 50, max: 500)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: List of objects with their names, labels, and CRUD capabilities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of objects to return (default: 50) | |
| filter | No | Optional text filter applied to object name or label (case-insensitive) | |
| queryable_only | No | If true, only return objects that support SOQL queries | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |