list_contacts
List contacts collected from chat conversations. Parameters:string
Search by name or email.
get_contact
Get detailed information about a specific contact. Parameters:string
required
The ID of the contact to retrieve.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List and retrieve contacts via the MCP API.
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "list_contacts",
"arguments": {
"search": "john"
}
},
"id": 1
}
{
"contacts": [
{
"id": "ct-1",
"name": "John Doe",
"email": "john@example.com",
"phone": "+43 123 456 789",
"company": "Acme Corp",
"createdAt": "2025-01-20T14:00:00Z"
}
]
}
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_contact",
"arguments": {
"contactId": "ct-1"
}
},
"id": 2
}
{
"id": "ct-1",
"name": "John Doe",
"email": "john@example.com",
"phone": "+43 123 456 789",
"company": "Acme Corp",
"createdAt": "2025-01-20T14:00:00Z"
}