my-mcp-template
Allows Prometheus to scrape operational metrics from the MCP server via a /metrics endpoint.
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., "@my-mcp-templatefetch https://example.com"
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.
my-mcp-template
A generic template for building FastMCP servers
for CLI coding agents (Claude Code and similar) -- not chat UIs. It ships
with two working example tools (pure logic, and an external-call tool with
tenacity retries), a unified error format, a Prometheus /metrics
endpoint, optional Langfuse tool-call tracing, Docker Compose deployment,
and a two-axis test suite. Not RAG-specific: just as suited to DB-query or
file-operation tools. Ships with no auth layer -- see
docs/DEPLOYMENT.md if your deployment needs one.
Using this as a template
This repo is a plain [GitHub template repository]("Use this template" button), not a cookiecutter project -- there's no templating variables to fill in. To start a new project from it:
Click "Use this template" on GitHub (or
git clone+ re-init).Rename the package path if you want something other than
src.main.python-- it's a literal directory structure (src/main/python/), so a plain find-replace across the repo handles it.Replace
example_tool.pywith your own tools (seedocs/TOOL_GUIDELINES.md).
Related MCP server: MCP Server Template
Local development
uv sync
cp .env.example .env
uv run python -m src.main.python.mainThe server listens on http://0.0.0.0:8000/mcp (streamable HTTP,
stateless). Point MCP Inspector
or any streamable-HTTP-capable client at that URL to try it out.
Running with Docker Compose
cp .env.example .env
docker compose up --buildHealth check: curl http://localhost:8000/health.
Tests
Two independent groups, plus a fast/slow cost axis that cuts across both.
See docs/TESTING.md for how these map onto a general 4-layer scope/determinism
ladder (contract -> real-dependency component -> LLM-judged pipeline -> full
agent E2E), and where the current suite's gaps are relative to it.
tests/server/-- does the MCP server itself work correctly? Schema/description contract, golden-case functional correctness, and a real container integration smoke test.tests/agent/-- can an agent actually use it? Feeds your tool descriptions to your configuredLLM_JUDGE_*model and checks it picks the right tool (scored with deepeval'sToolCorrectnessMetric,evaldependency group).test_tool_selection.py/test_tool_selection_quality.pyare deterministic/LLM-judged variants of the same check (layer 1/2);test_agent_e2e_multiturn.pyis a real multi-turn Claude Agent SDK session (agent-sdkgroup, needs the Claude Code CLI installed -- layer 3). This is the group that actually tests description quality.
uv sync --group eval # tests/agent/'s deterministic + LLM-judged checks
uv sync --group agent-sdk # tests/agent/test_agent_e2e_multiturn.py only (needs Claude Code CLI too)
uv run pytest -m "not slow" # fast: no LLM calls, no docker. Run on every PR.
uv run pytest -m slow # slow: calls your LLM_JUDGE_* provider + docker compose. Run on merge to main.
uv run pytest # everythingSecurity scanning (CI, part of the fast job)
ruff check .includes theS(flake8-bandit) ruleset -- basic Python SAST, e.g. hardcoded credentials, insecure defaults.pip-audit-- known CVEs in resolved Python dependencies.Trivy -- scans the built container image (OS packages + Python deps baked into it) and uploads results to the repo's Security tab. Report-only (doesn't fail the build): base-image OS CVEs with no fix published yet are common and not actionable, and failing on those would make this template permanently red for no fixable reason.
LLM_JUDGE_BASE_URL/LLM_JUDGE_API_KEY/LLM_JUDGE_MODEL are required for
both llm_judge golden cases and tests/agent/ (tool-selection check) --
bring your own OpenAI-compatible provider (OpenAI, NVIDIA NIM, DeepSeek,
Together, a local vLLM/Ollama, ...); the model must support tool/function
calling for tests/agent/ to work. Without them, both skip with a clear
reason rather than fail.
Golden cases
Add your own in tests/golden/*.yaml. Six assert_types:
exact_match, contains, regex_match, numeric_tolerance, llm_judge,
custom -- see tests/golden/schema.py for the shape and
tests/golden/example.yaml for one of each.
deepeval (eval dependency group)
deepeval is used a few ways:
tests/agent/test_tool_selection.py--ToolCorrectnessMetric, noavailable_tools=: deterministic set comparison, no real LLM judge call. Handed aLocalModelbuilt fromLLM_JUDGE_*directly, so it never touchesOPENAI_API_KEY.tests/agent/test_tool_selection_quality.py-- same metric, withavailable_tools=: a real LLM-judged "was this the best tool among alternatives" score, not just presence/absence. Seedocs/TESTING.md.RAG faithfulness (optional, bring your own) -- for RAG-style tools where you want to check answers stay grounded in retrieved context, add deepeval assertions in your own test module. Not wired into a specific test file here since it only applies if your tools actually do retrieval.
uv sync --group eval installs it.
Claude Agent SDK (agent-sdk dependency group)
tests/agent/test_agent_e2e_multiturn.py is the layer-3 test in
docs/TESTING.md's ladder -- a real multi-turn claude-agent-sdk session
driving this repo's actual MCP server over HTTP on a real port, not the
in-memory client the rest of the suite uses. Needs the Claude Code CLI
installed (the SDK shells out to it) on top of uv sync --group agent-sdk.
Categorically Claude-only -- unlike LLM_JUDGE_*, there's no
bring-your-own-provider option here, because the SDK itself only drives
Claude.
Connecting a client
{
"mcpServers": {
"my-mcp-template": {
"url": "http://localhost:8000/mcp"
}
}
}No auth by default -- see docs/DEPLOYMENT.md if your deployment needs
one; a client would then pass a bearer token via headers.
Project structure
src/main/python/ server code (main.py, config.py, errors.py, tools/)
tests/server/ does the server work correctly?
tests/agent/ can an agent actually use it?
tests/golden/ golden case schema + data
docs/ TOOL_GUIDELINES.md, DEPLOYMENT.mdChecklist: what you still need to fill in
Blocking:
Real golden case content in
tests/golden/*.yamlfor your own tools.
Conditional (only if you add the matching feature):
Auth, if your deployment needs it -- see
docs/DEPLOYMENT.md. Not wired in by default.A
volumes:entry indocker-compose.yml, if you add a real file-operation tool.LLM_JUDGE_BASE_URL/LLM_JUDGE_API_KEY/LLM_JUDGE_MODEL, only if you use thellm_judgeassert_type in a golden case -- no universal default, bring your own OpenAI-compatible provider. Cases skip (not fail) if unset.LANGFUSE_PUBLIC_KEY/LANGFUSE_SECRET_KEY/LANGFUSE_BASE_URL, only if you want tool-call tracing. Unset = no middleware added.
Already have a reasonable default -- tune if needed:
LLM_JUDGE_THRESHOLDinconfig.py.ALLOWED_ORIGINS(empty = CORS off; only needed for browser clients).
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.
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceA basic MCP server template with example tools for echoing messages and retrieving server information. Built with FastMCP framework and supports both stdio and HTTP transports for integration with various clients.
- FlicenseBqualityNot gradedmaintenanceA production-ready FastMCP server template with modular architecture for building MCP servers with organized tools, resources, and prompts, featuring container support and AI agent documentation system.3
- FlicenseBqualityDmaintenanceA template and demonstration project for building, testing, and deploying remote MCP servers using FastMCP and uv. It provides a foundational structure for creating MCP-compliant tools that can be hosted publicly and integrated with LLM agents.2
- FlicenseNot gradedqualityCmaintenanceA minimal, production-ready FastMCP server template with auto-discovery, YAML configuration, authentication, and a knowledgebase, enabling quick scaffolding of new MCP servers.
Related MCP Connectors
Primarily to be used as a template repository for developing MCP servers with FastMCP in Python, P…
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
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/Comet0322/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server