Tool details
Playground
Input schema
input-schema.json
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Find customer contacts with account context for support triage. Pass a focused SOQL query when searching by email, name, phone, or account.
| Field | Value |
|---|---|
| Name | salesforce__find_customer |
| Group | Integrations |
{
"type": "object",
"properties": {
"q": {
"type": "string",
"description": "SOQL Contact query. Include Account fields when the agent needs customer context. Must be a single read-only SELECT statement containing a top-level LIMIT followed by a plain number, for example LIMIT 25. A query with no LIMIT, or with a LIMIT only inside a subquery, is rejected before it runs. Keep the LIMIT small (25-50 is usually right); a project can cap the maximum rows, so retry with a smaller LIMIT if the query is rejected for exceeding that cap.",
"default": "SELECT Id, FirstName, LastName, Email, Phone, Title, AccountId, Account.Name, Account.Type, Account.Industry FROM Contact ORDER BY LastModifiedDate DESC LIMIT 25"
}
},
"description": "Input schema for the salesforce__find_customer tool."
}