get_record
Retrieve a specific Salesforce record using its object name and record ID. Streamline data access for Salesforce object management with the MCP Salesforce Connector.
Instructions
Retrieves a specific record by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_name | Yes | The name of the Salesforce object (e.g., 'Account', 'Contact') | |
record_id | Yes | The ID of the record to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"object_name": {
"description": "The name of the Salesforce object (e.g., 'Account', 'Contact')",
"type": "string"
},
"record_id": {
"description": "The ID of the record to retrieve",
"type": "string"
}
},
"required": [
"object_name",
"record_id"
],
"type": "object"
}