mcp-server-template
A Python MCP server template with environment-driven configuration, key authentication with rotation, JSON logging, and a golden-set eval harness for building production-ready MCP servers.
README
mcp-server-template
A Python MCP server template with the parts demos leave out: env-driven config, key auth with rotation, JSON logging with request IDs, and a golden-set eval harness. Fork it, replace the example tools, keep the shape.
Quick start
uv sync
uv run mcp-template # stdio server with seeded demo data
uv run pytest # unit + integration + e2e + eval contracts
Register it with Claude Desktop or Claude Code:
{
"mcpServers": {
"template": { "command": "uv", "args": ["run", "mcp-template"] }
}
}
Why this exists
Most public MCP examples stop at the demo: one file, print statements, no tests. What separates that from something you can deploy is auth, observability, and evals, so those are the parts this template takes seriously.
Auth: a stdio server inherits the trust of whatever launched it, but the moment you expose streamable-http you need token verification and a rotation story. auth.py does constant-time key verification with a two-slot rotation window.
Observability: when a tool call fails inside an agent loop, you need to know which call, with what arguments, and how long it ran. Every call gets a request ID and a JSON log line on stderr. stdout belongs to the protocol.
Evals: tools drift. The harness in evals/ replays golden request/response contracts against the server in-process, so a behavior change fails CI before a client notices.
Layout
src/mcp_template/
├── server.py # FastMCP entrypoint; DuckDB lifecycle via lifespan
├── config.py # pydantic-settings, MCP_TEMPLATE_* env vars
├── log.py # JSON lines to stderr, request-id contextvar
├── auth.py # static key verifier, rotation window
└── tools/
├── registry.py # registration + per-call instrumentation
└── example_query.py # REPLACE-ME: guarded read-only DuckDB query tool
evals/
├── goldens/ # recorded request → expected response contracts
└── test_tool_contracts.py
tests/ # unit, in-process integration, stdio subprocess e2e
Config is all environment variables (MCP_TEMPLATE_*; the full list is in config.py). Unsafe combinations fail at startup: requiring auth with no keys configured is a ValueError, not a silent pass-through.
Adding a tool
- Write the handler under
tools/with its unit tests. - Register it in
register_all(tools/registry.py), wrapped in_instrument(...)so it logs like the rest. - Record a golden contract in
evals/goldens/. - Delete
example_query.pyonce you have real tools.
The example tool is worth reading before you delete it: single-statement SELECT/WITH validation before execution, parameter binding instead of string interpolation, a hard row cap with an explicit truncated flag, and database errors surfaced as tool errors rather than crashes. The guard is defense in depth; production should also run against a read-only connection or replica.
Tests
Four layers, all under uv run pytest:
| Layer | Where | What it proves |
|---|---|---|
| Unit | tests/test_*.py |
each module's behavior in isolation |
| Integration | tests/test_server_inprocess.py |
tools over the real protocol, in-process memory streams |
| End-to-end | tests/test_stdio_e2e.py |
a spawned subprocess speaking stdio MCP |
| Eval contracts | evals/ |
golden request/response stability across changes |
The eval layer is the one that pays for itself: change a tool and the contract diff tells you whether clients will notice.
Deploying
The Dockerfile builds a slim non-root image with locked dependencies. Inject MCP_TEMPLATE_AUTH_KEYS from your secret manager; never bake keys into the image. For streamable-http exposure, wire StaticKeyVerifier.verify into your HTTP layer or terminate auth at a reverse proxy.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。