recent-conversation-with
Search and retrieve the most recent conversation with a specific person by name, helping product teams quickly access relevant interactions for decision-making.
Instructions
Find the most recent conversation with a specific person by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Optional: Maximum number of conversations to return (default: 1) | |
name | Yes | First or last name of the person to find |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Optional: Maximum number of conversations to return (default: 1)",
"type": "number"
},
"name": {
"description": "First or last name of the person to find",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}