Salesforce MCP Server

salesforce_search_objects

Search for Salesforce standard and custom objects by name pattern. Examples: 'Account' will find Account, AccountHistory; 'Order' will find WorkOrder, ServiceOrder__c etc.

Input Schema

NameRequiredDescriptionDefault
searchPatternYesSearch pattern to find objects (e.g., 'Account Coverage' will find objects like 'AccountCoverage__c')

Input Schema (JSON Schema)

{ "properties": { "searchPattern": { "description": "Search pattern to find objects (e.g., 'Account Coverage' will find objects like 'AccountCoverage__c')", "type": "string" } }, "required": [ "searchPattern" ], "type": "object" }