run_soql_query
Execute SOQL queries to retrieve data from Salesforce. Input a SOQL query string to interact directly with Salesforce data via the salesforce-mcp server.
Instructions
Executes a SOQL query against Salesforce
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The SOQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The SOQL query to execute",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}