quickmemo-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| QUICKMEMO_STORAGE | No | Custom storage path for the memos file. Defaults to ~/.quickmemo/memos.json if not set. | ~/.quickmemo/memos.json |
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 |
|---|---|
| add_memoA | Save a new context memo, snippet, or idea with optional category and tags. |
| list_memosA | List saved memos with optional category and tag filtering. |
| get_memoA | Retrieve the full details and content of a specific memo by ID. |
| search_memosA | Search memos by keyword across title, content, tags, and category. |
| delete_memoA | Delete a specific memo by ID. |
| clear_memosA | Clear all stored memos (use with caution). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| review_notes | Generate a synthesis, key takeaways, and action items from saved memos. |
| daily_standup | Generate a structured daily standup update from today's context memos. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_all_memos_resource | Dynamic markdown digest of all stored memos. |
| get_memo_stats_resource | Real-time statistics and summary metrics for QuickMemo. |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: create, list, get, search, delete, and clear. No two tools overlap in functionality, so an agent can easily select the correct one.
All tool names follow the verb_noun pattern consistently (add_memo, list_memos, get_memo, search_memos, delete_memo, clear_memos). The naming is uniformly snake_case with clear verbs and a common noun.
Six tools is well-scoped for a memo management server. Each tool covers a core operation without being excessive or too sparse.
The tool surface covers create, read (list/get/search), and delete (single and all). The only noticeable gap is the lack of an update or edit operation, which could be a minor limitation but does not interrupt the main workflow.