minimal-mcp
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., "@minimal-mcpAdd a todo to buy groceries"
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.
minimal-mcp
The smallest MCP server that still covers the whole protocol: one file, one todo list, all three primitives, plus elicitation.
uv sync
uv run python smoke_test.py # proves it works -- 12 checks
uv run mcp dev todo_server.py # MCP Inspector -- poke at it in a browserThe one thing to remember
Each MCP primitive is defined by who decides to use it:
Primitive | Decided by | Here |
Tools | the model |
|
Resources | the application |
|
Prompts | the user |
|
remove_todo also demonstrates elicitation — the tool pauses mid-call to
ask the user "really delete this?" before acting. That's a capability a plain
REST endpoint has no way to express.
Related MCP server: Basic MCP Server
Why one file
Everything lives in todo_server.py, top to bottom, in the order you'd want
to read it: storage → wire types → server → tools → resources → prompts. No
navigating between files to see the whole picture.
Storage is a plain in-memory dict — restarting clears it. That's deliberate: this project is about the protocol, not persistence.
Connecting it to a real host
claude mcp add todos -- uv --directory "<absolute path to this repo>" run python todo_server.pyNot yet verified against a real host — only against the Inspector and the smoke test.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityDmaintenanceA minimal demonstration server showcasing MCP protocol capabilities including tools, resources, and prompts with basic examples like hello world functionality.Last updated6MIT
- Alicense-qualityDmaintenanceA minimal template MCP server demonstrating basic tools, resources, and prompts functionality. Includes example implementations like a hello tool, history resource, and greet prompt for learning MCP development.Last updated6ISC
- Flicense-qualityDmaintenanceA sample MCP server that exposes tools, resources, and prompts for managing users and todos, supporting both stdio and Streamable HTTP transports.Last updated
- Flicense-qualityCmaintenanceA task manager MCP server that demonstrates all three MCP primitives (tools, resources, prompts). Enables users to manage tasks, read task summaries and details, and run structured planning/review prompts through natural language.Last updated
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
MCP server exposing the Backtest360 engine API as tools for AI agents.
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/gitcommit-computerphile/Custom-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server