doc_search_piler
Full-text search the Piler email archive.
Input schema
{
"type": "object",
"properties": {
"q": { "type": "string" },
"from": { "type": "string", "format": "email" },
"to": { "type": "string", "format": "email" },
"since": { "type": "string", "format": "date" },
"until": { "type": "string", "format": "date" },
"limit": { "type": "integer", "minimum": 1, "maximum": 50, "default": 20 }
},
"required": ["q"]
}
Output schema
{
"type": "object",
"properties": {
"hits": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message_id": { "type": "string" },
"subject": { "type": "string" },
"from": { "type": "string" },
"to": { "type": "array", "items": { "type": "string" } },
"date": { "type": "string", "format": "date-time" },
"snippet": { "type": "string" }
}
}
}
}
}
Example invocation
{
"tool": "doc_search_piler",
"arguments": { "q": "Acme Bistro pricing", "since": "2026-01-01", "limit": 10 }
}
Example response
{
"hits": [
{
"message_id": "<20260410.121200@acmebistro.fr>",
"subject": "Re: prix vin rouge 2026",
"from": "j.lefevre@acmebistro.fr",
"to": ["rani@sodimo.eu"],
"date": "2026-04-10T12:12:00Z",
"snippet": "… confirmant votre offre sur le vin rouge à 18,50 € HT…"
}
]
}
Piler is the long-term email archive. Complements crm_search — CRM is the relationship truth, Piler is the correspondence record.