mcp-starter
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 | Save a new note with a title and body. |
| list_notesA | Return all note IDs and titles. |
| delete_noteA | Delete a note by its numeric ID. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| summarize_notes | Asks Claude to summarize all current notes into bullet points. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| All Notes | Full content of every saved note. |
TDQS
Scored across 3 tools
Each tool has a distinct purpose: create, delete, and list notes. There is no overlap or ambiguity.
All tools follow a consistent verb_noun pattern: add_note, delete_note, list_notes.
Three tools is reasonable for a simple note-taking starter, though missing get/update operations keeps it from being fully scoped.
Missing essential operations like fetching a single note by ID and updating notes. Only create, delete, and list are provided, leaving significant gaps.