mcp-starter
This server provides a simple notes management application through the Model Context Protocol, with three core capability types:
Tools
add_note— Save a new note by providing a title and bodylist_notes— Retrieve all existing notes, returning their IDs and titlesdelete_note— Remove a specific note by its numeric ID
Resources
notes://all— Read the full content of all notes as JSON
Prompts
summarize_notes— Ask Claude to summarize all saved notes as bullet points
Notes are persisted to a notes.json file (or a Docker volume if running containerized), and can be accessed via natural language requests in Claude Code (e.g. "Add a note", "List my notes", "Delete note #1").
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-starterAdd a note titled 'meeting' with body 'discuss Q3 plans'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-starter
A minimal MCP (Model Context Protocol) server that demonstrates the three core capability types — Tools, Resources, and Prompts — through a simple notes app.
Use this as a learning template or starting point for building your own MCP server.
What's inside
Capability | Name | What it does |
Tool |
| Save a note with a title and body |
Tool |
| List all note IDs and titles |
Tool |
| Delete a note by ID |
Resource |
| Read full content of all notes as JSON |
Prompt |
| Ask Claude to summarize all notes as bullet points |
Notes are persisted to notes.json alongside server.py.
Related MCP server: MCP Notepad Server
Install
One-liner (bash)
Requires uv and Claude Code.
curl -fsSL https://raw.githubusercontent.com/ejoliet/mcp-starter/main/install.sh | bashThis clones the repo to ~/mcp-starter, installs dependencies, and registers the server with Claude Code automatically. Start a new Claude Code session and it's ready.
To install to a custom path:
MCP_STARTER_DIR=~/dev/mcp-starter curl -fsSL https://raw.githubusercontent.com/ejoliet/mcp-starter/main/install.sh | bashDocker
Requires Docker.
git clone https://github.com/ejoliet/mcp-starter.git
cd mcp-starter
docker compose up --buildNotes are persisted in a named Docker volume (notes-data). Register the containerized server with Claude Code:
claude mcp add mcp-starter -- docker compose -f ~/mcp-starter/docker-compose.yml run --rm mcp-starterManual setup
Requirements: Python 3.12+, uv, Claude Code.
git clone https://github.com/ejoliet/mcp-starter.git ~/mcp-starter
cd ~/mcp-starter
uv sync
claude mcp add mcp-starter -- uv --directory ~/mcp-starter run server.pyThen start a new Claude Code session — the server will be available automatically.
Usage in Claude
Once registered, Claude can call tools directly:
"Add a note titled 'standup' with body 'review PR #42'"
"List my notes"
"Delete note #1"
Or read the resource and prompt via the MCP panel (/mcp).
CLI development & testing
See DEV_GUIDE.md for how to iterate on the server from the terminal without relying on Claude Code.
Quick test:
uv run python test_resource.pyProject structure
mcp-starter/
├── server.py # MCP server implementation
├── test_resource.py # CLI test harness
├── install.sh # Bash one-liner installer
├── Dockerfile # Container image
├── docker-compose.yml # Compose config
├── pyproject.toml # Dependencies
└── DEV_GUIDE.md # Developer iteration guideExtending
Add a new tool in server.py:
Append a
types.Tool(...)entry inlist_tools()Handle
name == "your_tool"incall_tool()Test with
test_resource.pybefore restarting Claude Code
Available Tools
3 toolsadd_noteA
Save a new note with a title and body.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Short title | |
| body | Yes | Note content |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It only states 'save a new note,' which implies a write operation, but does not disclose whether updates are possible, if there are limits, or what the response looks like. Behavioral traits beyond creation are missing.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no wasted words: action verb 'Save', target 'new note', and parameters 'with a title and body'. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple create tool with two parameters and no output schema, the description captures the core functionality. It could optionally mention that it creates a new note (not updates) or hint at the response, but it is largely adequate for the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions 'Short title' and 'Note content.' The description adds marginal value by naming the parameters ('title and body') but does not provide additional constraints or formatting beyond what the schema already offers. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states 'Save a new note with a title and body,' specifying the action (save) and resource (note). It distinguishes from siblings 'delete_note' and 'list_notes' by implying creation vs. deletion and listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Usage is implied (creating new notes), but no explicit guidance on when to use this tool versus alternatives like 'delete_note' or 'list_notes'. No when-not scenarios or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_noteA
Delete a note by its numeric ID.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Note ID to delete |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Description only says 'delete' without elaborating on side effects (e.g., permanent removal, return value, permission requirements). With no annotations, the description should provide more behavioral context but is minimal.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single, direct sentence with no wasted words. Front-loaded with the action and resource, followed by parameter method. Efficient and to the point.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete tool with one parameter and no output schema, the description is sufficient. It explains what the tool does and the required input. Could mention whether deletion is permanent or confirmable, but not necessary for basic understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers the single parameter 'id' with description 'Note ID to delete'. The description adds 'numeric' which aligns with integer type. Schema description coverage is 100%, so baseline is 3; description adds minimal extra meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the action (delete) and resource (note) with the method (by numeric ID). It distinguishes from sibling tools add_note and list_notes, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Description implies usage when a specific note needs to be deleted, but does not explicitly state when not to use it or mention alternatives. No exclusions or context for when this tool is appropriate over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_notesA
Return all note IDs and titles.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so description bears full burden. It only states returns IDs and titles but does not disclose read-only nature, potential performance concerns, or pagination behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence with no wasted words. Concise and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, description hints at return structure (IDs and titles) but lacks details like format or array wrapping. Minimally adequate for a simple tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, schema coverage is 100%. Description does not need to add parameter info; baseline is 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states action ('Return') and resource ('all note IDs and titles'). Distinguishes from sibling tools add_note and delete_note by being a read operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use or when not to use. While context implies it's for listing notes, no exclusions or comparisons with siblings are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
v0.1.0- First observed
add_note - First observed
delete_note - First observed
list_notes
TDQS
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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
An MCP server that used to create notes
Markdown-based note-taking with a hosted MCP server. Your notes serve you and your AI.
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
Related MCP Servers
- FlicenseCqualityDmaintenanceA simple MCP server implementing a note storage system with one tool to add notes and one prompt to summarize stored notes.42-
- FlicenseBqualityDmaintenanceA learning-focused MCP server that demonstrates core MCP concepts through a simple notepad application, enabling users to create, update, delete, and search notes while exploring tools, resources, and prompts functionality.4-
- FlicenseCqualityDmaintenanceA simple note-taking MCP server that allows adding notes and summarizing them via a prompt.2-
- FlicenseNot gradedqualityDmaintenanceA simple notes MCP server that enables creating, listing, and summarizing text notes via resources, tools, and prompts.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ejoliet/mcp-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server