MCP Notes Server
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 |
|---|---|
| add_noteA | Create a new note. |
| update_noteA | Replace the content of an existing note. |
| list_notesA | List the titles of all saved notes. |
| read_noteB | Read the full content of one note. |
| search_notesA | Find notes whose title or content contains the query (case-insensitive). |
| delete_noteA | Delete a note permanently. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| all_notes | A read-only snapshot of every note, concatenated. Resources are data Claude can load into its context on demand, as opposed to tools, which perform actions. This one lets Claude "see" all notes at once without calling a tool for each. |
TDQS
Scored across 6 tools
Each tool maps to a distinct operation: create, update, list, read, search, and delete. There is no overlap or ambiguity in their purposes.
All tools follow a clear verb_noun pattern with the note resource. The only minor variation is pluralization for list_notes and search_notes, but this is consistent with typical collection-returning conventions.
Six tools cover the full lifecycle of a notes domain without redundancy. The count is well-scoped and each tool earns its place.
The server provides complete CRUD coverage plus search, with no obvious gaps. Users can create, read, list, update, delete, and find notes effectively.