NoteMind
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": true
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| create_categoryB | Create a new category if it doesn’t exist. |
| list_categoriesA | List all available categories. |
| add_noteA | Add a note under a given category. If the category doesn't exist, it will be created automatically. |
| get_notesA | Retrieve all notes (optionally from a category). |
| search_notesA | Search for notes containing a specific keyword. |
| suggest_similar_notesC | Suggest notes with similar content (textual similarity). |
| delete_note_by_textA | Delete notes containing a given keyword (optionally limited to a category). Requires confirm_delete=True to actually remove them. |
| delete_categoryA | Delete a category and all its associated notes. Requires confirm_delete=True to proceed with deletion. |
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 8 tools
Each tool clearly targets either categories or notes, with distinct actions: create/list/delete for categories and add/get/search/suggest/delete for notes. The overlap between get_notes and search_notes is mild and well-defined by keyword filtering. No two tools appear to do the same job.
All tool names follow a consistent lowercase snake_case verb_noun pattern, such as create_category, list_categories, add_note, and delete_note_by_text. Minor verb variation between add, create, get, and list is acceptable since the objects and actions remain clear.
Eight tools is a well-scoped set for a note-and-category management server. Each tool covers a distinct operation without unnecessary redundancy or bloat.
The server covers create, read, search, and delete operations for both categories and notes, plus a similarity feature. However, there is no update/edit operation for notes or categories, and notes can only be deleted by keyword rather than by a stable identifier, which creates notable lifecycle gaps.