Notes
What you wrote down, and what an agent wrote down for you
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/notes/list
Methods
POST /api/v1/notes/addWrite a note under a title, so it is there next conversation. Writing a title that exists rewrites that note
| Argument | Type | Description |
|---|---|---|
title * | string | What the note is called, e.g. "location" or "project brief". Writing a title that exists rewrites that note |
text * | string | What the note says |
curl -X POST \
-H "Authorization: Bearer $MU_TOKEN" \
-H "Content-Type: application/json" \
-d '{"text":"text","title":"title"}' \
https://mu-mcp.yvangodard.me/api/v1/notes/addPOST /api/v1/notes/deleteDelete one note by title
| Argument | Type | Description |
|---|---|---|
title * | string | The note to delete, as returned by notes_list |
curl -X POST \
-H "Authorization: Bearer $MU_TOKEN" \
-H "Content-Type: application/json" \
-d '{"title":"title"}' \
https://mu-mcp.yvangodard.me/api/v1/notes/deleteGET /api/v1/notes/getRead one note by title. Use it when you know the title; notes_list when you do not
| Argument | Type | Description |
|---|---|---|
title * | string | The note's title, as given to notes_add |
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/notes/get?title=title"
GET /api/v1/notes/listList every note the caller has written, with its text
curl \ -H "Authorization: Bearer $MU_TOKEN" \ "https://mu-mcp.yvangodard.me/api/v1/notes/list"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


