M5 Petit Notes
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NOTES_DIR | No | ノートファイル(.md)を保存するディレクトリ(デフォルトは $PETIT_DATA_DIR/characters/<character_id>/notes) | |
| CHARACTER_ID | No | キャラクターID。ノート保存先のパス決定に使う | default |
| PETIT_DATA_DIR | No | データディレクトリのルート | ~/petit_data |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_notesA | List all notes in the notebook. Returns note names and their sizes. Use this to see what notes you have. |
| read_noteA | Read a note by name. Returns the full content. Use this to look back at something you wrote down. |
| write_noteA | Write or update a note. Creates a new note or overwrites an existing one. Use markdown format. Good for reference tables, lists, research summaries, anything you want to look back at without searching memories. |
| append_noteA | Append text to an existing note. If the note doesn't exist, creates it. Use this to add entries to a list or log without rewriting the whole note. |
| delete_noteB | Delete a note by name. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool has a distinct operation (append, delete, list, read, write) with no overlap. Agents can clearly differentiate them.
All tool names follow a consistent verb_noun pattern using snake_case (e.g., append_note, delete_note), making them predictable.
5 tools is an ideal count for a notes server, covering all essential operations without being too sparse or bloated.
The tool set provides full CRUD operations plus listing and appending. No obvious gaps for basic note management.