Salesforce - SObject Delete
Connect to Salesforce’s official Hosted MCP SObject Delete server to read, search, and delete Salesforce object records.
Key Features
- Retrieve Salesforce object schema and user information
- Run SOQL queries and SOSL searches
- View recently accessed SObject records
- Retrieve related records
- Delete SObject records
Basic Information
Authentication Method
Uses Salesforce OAuth authentication.
Input Parameters
- sandbox (Optional): Whether to connect to a Salesforce Sandbox environment
Supported MCP Tools
Schema and Context Tools
getObjectSchema
Retrieves Salesforce object schema information in a format that is easy for the LLM to use.
getUserInfo
Retrieves identification and context information for the currently authenticated Salesforce user.
Data Retrieval and Search Tools
listRecentSobjectRecords
Retrieves specific SObject records that the user has recently viewed or modified.
soqlQuery
Runs a SOQL query to retrieve Salesforce records.
find
Runs a SOSL-based text search to find data across multiple Salesforce objects.
getRelatedRecords
Retrieves related child records by following relationships from a parent record.
Data Deletion Tools
deleteSobjectRecord
Deletes a Salesforce record by ID.
deleteRelatedRecord
Finds and deletes a related child record by following relationships from a parent record.
Usage Examples
For example,
- if you enter a prompt like “Delete this test Lead record”,
- the LLM first identifies the target record and then calls the
deleteSobjectRecordtool through MCP, - and responds in the chat based on the tool result.
Other example prompts:
- “Find the Account I want to delete first”
- “Delete the test Contact related to this Account”
Notes
- Create and update operations are not supported.
- Delete operations affect live Salesforce data, so use them carefully.
- Available objects and fields depend on your Salesforce permissions.