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 TemplateScaffold a new 'analytics' feature following the project's architecture."
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 Template
A generic, production-ready scaffold for building Model Context Protocol (MCP) servers with Python and FastMCP.
This template preserves the architecture, patterns, and best practices of a real production MCP server — stripped of all domain-specific code so you can fork it and build your own.
It also serves as an onboarding project and a reference codebase for coding agents (e.g. Claude, Cursor, Copilot). The structure, inline annotations, and documentation are intentionally designed so that an AI agent can read the codebase, understand the conventions, and rapidly scaffold new tools, workflows, and packages without human hand-holding.
Architecture
mcp-template/
├── packages/
│ ├── agent/ # Pydantic-AI terminal chat agent for local testing
│ └── mcp_shared/ # Shared utilities (response builders, schemas, logging)
├── mcp_server/ # Main MCP Server
│ └── src/mcp_server/
│ ├── __main__.py # Server entry point
│ ├── instructions/ # Agent instructions (4-layer framework)
│ ├── tool_box/ # Tool registration + _tools_template reference
│ └── workflows/ # Multi-step workflow orchestration
├── src/mcp_workspace/ # Workspace root package
├── tests/
│ ├── unit/ # Unit tests for packages
│ └── agentic/ # Agentic integration tests (requires running server)
└── docs/ # Architecture and best practices documentationKey Design Decisions
mcp_shared— All tools use shared response builders (SummaryResponse,ErrorResponse) andResponseFormatenum to control output verbosity and token usage._tools_template— A fully annotated reference implementation. Every architectural decision is documented inline. Read this before creating your first tool.Docstring Registry — Tool descriptions are versioned separately from logic, enabling A/B testing and prompt engineering without touching business logic.
ToolNames Registry — All tool names are constants. No inline strings — prevents typos and enables safe IDE refactors.
TOON Format — Token-optimized serialization for structured data in tool responses (
toon-formatlibrary).
Setup
Prerequisites
Python 3.13+
uv package manager
Install
# Clone and install all workspace packages
git clone <your-repo-url> mcp-template
cd mcp-template
uv sync --all-packagesConfigure environment
cp .env.sample .env
# Edit .env with your settings (no required values for basic local usage)Running the Server
uv run mcp_serverThe server starts at http://127.0.0.1:8000/mcp/ (streamable HTTP transport).
Health check
curl http://127.0.0.1:8000/healthcheck
# → OKDebug with MCP Inspector
npx @modelcontextprotocol/inspector http://127.0.0.1:8000/mcp/Open http://localhost:6274 in your browser. You should see the mcp_tool_template tool registered.
Run the Pydantic-AI Agent
# Start server first, then in a second terminal:
uv run agentThis starts an interactive terminal chat REPL connected to your local MCP server.
Running Tests
uv run pytestAgentic tests (require a running server) are skipped by default. To run them:
# Terminal 1: start the server
uv run mcp_server
# Terminal 2: run agentic tests
uv run pytest tests/agentic/ -vHow to Create a New Tool
Create a feature folder under
mcp_server/src/mcp_server/tool_box/:tool_box/ └── my_feature/ ├── __init__.py ├── tools.py # add_tool(mcp) function ├── schemas.py # Pydantic input/output models ├── tool_names.py # ToolNames constants └── docstrings/ ├── __init__.py # DOCSTRINGS registry └── my_tool_docs.pyUse — every architectural decision is annotated.
Register your tool in
tool_box/__init__.py:from .my_feature.tools import add_tool as add_my_feature_tool def register_all_tools(mcp): add_template_tool(mcp) add_my_feature_tool(mcp) # ← add hereAdd your tool name to the root
ToolNamesregistry intool_box/tool_names.py.
How to Write Effective Tool Docstrings
See docs/TOOLS_BEST_PRACTICES.md for the full guide. Key principles:
Everything is a prompt — function names, argument names, docstrings, and responses all shape agent behavior.
Examples are contracts — show the agent what success looks like; it will follow the pattern.
Flat arguments > nested — agents struggle with deeply nested inputs; prefer flat Pydantic models.
ResponseFormat enum — give agents control over output verbosity to manage token budgets.
Token budget — allocate a max token budget per tool before you write it.
How to Write Agent Instructions
See docs/MCP_INSTRUCTIONS_FRAMEWORK.md for the 4-layer framework:
Mental Model — domain-specific interpretive lens
Categories — mutually exclusive use-case classification slots
Procedural Knowledge — tool chains and guard rails per category
Examples — few-shot intent → action demonstrations
Edit mcp_server/src/mcp_server/instructions/instructions.py to replace the generic template with your domain instructions.
VS Code Debugging
Add to .vscode/launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "MCP Server",
"type": "python",
"request": "launch",
"module": "mcp_server",
"justMyCode": false,
"env": {
"PYTHONPATH": "${workspaceFolder}/mcp_server/src:${workspaceFolder}/packages/mcp_shared/src"
}
}
]
}Documentation
Document | Description |
Best practices for designing MCP tools | |
4-layer agent instructions design framework | |
UV workspace mechanics and package management | |
Creating and consuming workspace packages | |
Python and UV external resources |
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.