MCP Local File Saver
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| save_noteC | Save a note to a local text file. |
| append_noteB | Append content to an existing note. Fails if the note does not exist. |
| append_response_to_noteC | Append Claude's response text to an existing note. |
| read_note_by_filenameA | Read a note by exact filename. Use notes://all to find the filename first. |
| list_notesB | List all .txt files in the notes directory. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| summarize_note | Create a prompt for summarizing a saved note. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| list_all_notes | List all .txt files in the notes directory. |
TDQS
Scored across 5 tools
save_note, append_note, and append_response_to_note have distinct purposes, though append_note and append_response_to_note overlap in that both append content to a note; the latter is specialized for Claude's response. The distinction is clear from descriptions.
Most tools follow a consistent verb_noun pattern (save_note, append_note, read_note_by_filename, list_notes), but append_response_to_note adds a qualifier that breaks the pattern slightly. Still largely predictable.
Five tools are well-scoped for a local file note-taking server, covering create, append, read, and list operations. No redundant or trivial tools.
Core operations like create, append, read, and list are present, but there is no delete, rename, or update tool. Agents may hit dead ends when needing to remove or modify notes beyond appending.