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.
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
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Latest Blog Posts
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