Recall
Search what you have said to an agent and been told, and read any conversation back
Calling it
This is your own data, so a call has to say who you are. Make a token at /token and send it as a header.
curl -H "Authorization: Bearer $MU_TOKEN" \ https://mu-mcp.yvangodard.me/api/v1/recall/list
Methods
GET /api/v1/recall/conversationRead one whole conversation back by id, as recall_search and recall_list report it
| Argument | Type | Description |
|---|---|---|
id * | string | The conversation's id, as recall_search reports it |
limit | number | Max messages, most recent kept (default 50) |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/recall/conversation?id=id"
GET /api/v1/recall/listList the caller's conversations, most recently active first, with what each is about and where it happened
| Argument | Type | Description |
|---|---|---|
client | string | Only conversations on one client: web, mail, cli |
limit | number | Max conversations (default 20) |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/recall/list"
GET /api/v1/recall/searchSearch everything the caller has said to an agent and been told, wherever they said it — the browser, email, or the command line. Use it when something was mentioned and you need to find where; notes_get is for a fact somebody wrote down on purpose
| Argument | Type | Description |
|---|---|---|
query * | string | What to look for — a word or phrase that was said |
client | string | Narrow to where it was said: web, mail, cli. Omit for everywhere |
limit | number | Max results (default 20, max 200) |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/recall/search?query=query"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


