sf_get_record
ActiveTool of mcp-salesforce
declared in 0.1.0
Fetch a single Salesforce record by ID. Specify object type (e.g., 'Account', 'Contact', 'Opportunity') and record ID. Returns all fields.
Parameters schema
{
"type": "object",
"examples": [
{
"id": "001xx000003DHP",
"object": "Account"
},
{
"id": "003xx000004TM1",
"fields": "Id,FirstName,LastName,Email",
"object": "Contact"
}
],
"required": [
"object",
"id"
],
"properties": {
"id": {
"type": "string",
"description": "Salesforce record ID"
},
"fields": {
"type": "string",
"description": "Comma-separated field names (optional)"
},
"object": {
"type": "string",
"description": "SObject type (e.g., \"Account\", \"Contact\", \"Opportunity\")"
}
}
}Parent server
mcp-salesforce
https://github.com/pipeworx-io/mcp-salesforce
2/7 registries