Recall

Search what you have said to an agent and been told, and read any conversation back

Open Recall →

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

How every call behaves →

Methods

GET /api/v1/recall/conversation

Read one whole conversation back by id, as recall_search and recall_list report it

Needs an account.

ArgumentTypeDescription
id *stringThe conversation's id, as recall_search reports it
limitnumberMax 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/list

List the caller's conversations, most recently active first, with what each is about and where it happened

Needs an account.

ArgumentTypeDescription
clientstringOnly conversations on one client: web, mail, cli
limitnumberMax conversations (default 20)
curl \
  -H "Authorization: Bearer $MU_TOKEN" \
  "https://mu-mcp.yvangodard.me/api/v1/recall/list"

The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.