mcp-server-starter
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-server-starterlist all items in inventory"
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-server-starter
A small but real MCP server (FastMCP) — with a destructive action guarded behind human confirmation.
Most "MCP server" examples stop at a hello_world tool. This one shows the part
that actually matters when an agent is on the other end: a destructive tool that
refuses to run until a confirmation token is supplied, forcing the agent to
surface the decision to a human instead of wiping data on its own.
It exposes a tiny inventory domain as MCP tools + one resource, over stdio transport — drop-in for Claude Desktop, Cursor, or the MCP Inspector.
Tools
Tool | Tier | Behavior |
| read | runs freely |
| low-impact write | runs freely (validates inputs) |
| destructive | guarded — returns a one-time token first; only deletes when called again with that token |
| read | human-readable inventory snapshot |
The guard pattern (delete_all_items) is the point: call it once with no token →
you get back {"status": "confirmation_required", "confirm_token": "..."} → a human
approves → call again with the token → it executes. An irreversible action never
runs on the agent's say-so alone.
Related MCP server: mcp-minecraft
Quick start
python -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
python server.py # stdio transportInspect it interactively:
npx @modelcontextprotocol/inspector python server.pyWire it into Claude Desktop / Cursor
Add to your MCP config (claude_desktop_config.json or .cursor/mcp.json):
{
"mcpServers": {
"inventory-starter": {
"command": "python",
"args": ["/absolute/path/to/mcp-server-starter/server.py"]
}
}
}Tip (Claude Code schema): for HTTP-based servers use
"type": "http"— the validator rejects the spec-name"streamable-http"even though they're the same transport. (stdio servers like this one don't need atype.)
Going further
Swap the in-memory
_ITEMSdict for Postgres/Supabase (see the companionfastapi-supabase-multitenant-starter).Route the confirmation to Slack/web instead of a token — see
agent-guardrailsfor a pluggable approver + audit trail.For a LangGraph agent that consumes a guarded tool like this, see
langgraph-hitl-agent.
License
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/Kaiser9005/mcp-server-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server