sf_create_record
ActiveTool of mcp-salesforce
declared in 0.1.0
Create a new Salesforce record. Specify object type (e.g., 'Contact') and field values. Returns the new record ID.
Parameters schema
{
"type": "object",
"examples": [
{
"fields": {
"Name": "Acme Corporation",
"Industry": "Technology",
"BillingCity": "San Francisco"
},
"object": "Account"
},
{
"fields": {
"Email": "john.smith@example.com",
"Phone": "415-555-0100",
"LastName": "Smith",
"FirstName": "John"
},
"object": "Contact"
}
],
"required": [
"object",
"fields"
],
"properties": {
"fields": {
"type": "object",
"description": "Field name/value pairs (e.g., {\"Name\": \"Acme\", \"Industry\": \"Tech\"})"
},
"object": {
"type": "string",
"description": "SObject type (e.g., \"Account\", \"Contact\")"
}
}
}Parent server
mcp-salesforce
https://github.com/pipeworx-io/mcp-salesforce
2/7 registries