mcp-python

mcp-python is a skill for Claude Code, Codex from antoinebou12/uml-mcp. It costs 76 tokens per session (1,062 once invoked), scanned A, original, MIT.

A guide for creating MCP servers in Python with FastMCP and the official MCP SDK. MCP, or Model Context Protocol, lets AI clients discover and use defined tools, data resources, and prompts.

In plain words
What is it for?
Use it to build or modify MCP tools, resources, and prompts, choose local or remote communication, and configure clients such as Claude Desktop or Cursor.
Why use it?
It explains how to expose Python capabilities to AI clients with clear inputs, outputs, transports, and side-effect information.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/antoinebou12/uml-mcp/mcp-python
Any agent
npx skills add antoinebou12/uml-mcp --skill mcp-python
Clone the repo
git clone --depth 1 https://github.com/antoinebou12/uml-mcp

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for mcp-python

README.md
[![agentmods](https://agentmods.dev/badge/skills/antoinebou12/uml-mcp/mcp-python.svg)](https://agentmods.dev/skills/antoinebou12/uml-mcp/mcp-python)
Your own site
<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>
Per session 76 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,062 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash ca90bceff709, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.skill/skills/mcp-python/SKILL.md · 115 lines

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.

Read the full file on GitHub · 115 lines

Changes

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.

  1. 4d ago First seen · 115 lines · 76 tokens per session scan A ca90bceff709

Subscribe to this mod's changes

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.