Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/antoinebou12/uml-mcp/mcp-pythonnpx skills add antoinebou12/uml-mcp --skill mcp-pythongit clone --depth 1 https://github.com/antoinebou12/uml-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/antoinebou12/uml-mcp/mcp-python)<a href="https://agentmods.dev/skills/antoinebou12/uml-mcp/mcp-python"><img src="https://agentmods.dev/badge/skills/antoinebou12/uml-mcp/mcp-python.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00076 | $0.01062 |
| Opus 5 | $0.00038 | $0.00531 |
| Sonnet 5 | $0.00015 | $0.00212 |
| Haiku 4.5 | $0.00008 | $0.00106 |
Grade A, and why
mcp-python scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 115 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Servers in Python
Create and extend MCP servers in Python with FastMCP and the official MCP Python SDK. Based on MCP Build a server and MCP Best Practices.
When to Use
- Building or extending MCP servers in Python
- Adding tools, resources, or prompts
- Debugging MCP server connection or tool discovery
- Choosing transport (stdio vs streamable HTTP)
- Configuring clients (Claude Desktop, Cursor) to run the server
Core Concepts
- Tools: Functions callable by the LLM (with user approval). Have explicit input/output and side-effect disclosure.
- Resources: Readable data (files, API responses) the client fetches for context. URI-based.
- Prompts: Pre-written templates for specific tasks; reduce prompt drift.
- Discovery: Clients enumerate tools/resources/prompts and get schemas at connect time.
- Transports: stdio for local, per-user processes; streamable HTTP for remote, shared services.
FastMCP Quick Reference
Python 3.12, MCP Python SDK 1.2.0+. Use uv add "mcp[cli]" or uv add fastmcp (or project may use fastmcp package).
from mcp.server.fastmcp import FastMCP
mcp = FastMCP("my-server")
@mcp.tool()
async def get_forecast(latitude: float, longitude: float) -> str:
"""Get weather forecast for a location.
Args:
latitude: Latitude of the location
longitude: Longitude of the location
"""
# ... fetch and return string
return result
@mcp.resource("config://{key}")
def get_config(key: str) -> str:
"""Get config value by key."""
return config_store.get(key, "")
@mcp.prompt()
def plan_task(goal: str, steps: int = 5) -> str:
"""Generate a step-by-step plan. Args: goal, steps (default 5)."""
return f"Plan for: {goal} in {steps} steps."
def main():
mcp.run(transport="stdio")
if __name__ == "__main__":
main()
- Tool schemas: FastMCP infers names, types, and descriptions from type hints and docstrings (Args/Returns).
- Run:
mcp.run(transport="stdio")for stdio; use streamable HTTP for remote deployment.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 115 lines · 76 tokens per session scan A ca90bceff709
mcp-python is a skill published in the GitHub repository antoinebou12/uml-mcp (97 stars, last pushed yesterday), licensed MIT. It adds 76 tokens to every session and 1,062 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
detailed-design
Skill for detailed design — class diagrams, sequence diagrams, API contracts, database schema design, and error handling strategy.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
finishing-a-development-branch
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work.
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
test-driven-development
Use when implementing any feature or bugfix, before writing implementation code.