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/alonf/mcppythondemo/python-mcp-tool-bridgenpx skills add alonf/MCPPythonDemo --skill python-mcp-tool-bridgegit clone --depth 1 https://github.com/alonf/MCPPythonDemoWhat 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.00000 | $0.00458 |
| Opus 5 | $0.00000 | $0.00229 |
| Sonnet 5 | $0.00000 | $0.00092 |
| Haiku 4.5 | $0.00000 | $0.00046 |
Grade A, and why
python-mcp-tool-bridge 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 yesterday.
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 — 38 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Python MCP Tool Bridge Skill
Use When
You need a Python lecture/demo client that lets an LLM call MCP tools without waiting for server-side sampling support.
Pattern
- Start the MCP server locally with
StdioServerParameters(command=sys.executable, args=["-m", server_module]). - Connect with
stdio_client(...)+ClientSession, theninitialize()andlist_tools(). - Convert each MCP
Toolinto an OpenAI function tool by reusingname,description, andinputSchema. - Run a chat-completions loop:
- send system + user messages plus tool schema
- if the model returns tool calls, execute them through
session.call_tool(...) - feed serialized tool results back as
role="tool" - stop when the model returns plain assistant text
- Keep config explicit via env vars for endpoint, API key, deployment, and API version.
Runtime Shape Check
- Before adding Azure AI Foundry project/runtime abstractions, inspect the live reference client code that actually runs the lecture flow.
- If that runnable path uses
AzureOpenAIClient(endpoint, credential).GetChatClient(deploymentName)or the equivalent endpoint + deployment + credential shape, keep the Python bridge on the simpler Azure OpenAI runtime path. - Only switch the Python client to a Foundry project client when the reference app itself is using a project endpoint/client in its active runnable path.
Testing Pattern
- For live validation in WSL, first verify
az account showsucceeds, then runpython3 -m mcp_linux_diag_server.client --json --prompt "..."; the[tool] ...trace plus final JSON answer is the fastest proof that Azure OpenAI and the MCP bridge both worked. - Unit-test config parsing independently.
- Unit-test MCP-tool → OpenAI-tool translation as a pure function.
- Unit-test the agent loop with a fake model and fake MCP session so no external credentials are required.
- Keep smoke tests focused on server startup plus client configuration guardrails.
Reference Files
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.
- yesterday First seen · 38 lines · 0 tokens per session scan A 627de60aae37
python-mcp-tool-bridge is a skill published in the GitHub repository alonf/MCPPythonDemo (0 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 458 tokens. 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-31.
Other skills, from other repositories
planning-with-files-ar
تخطيط مستمر قائم على الملفات لعمل وكلاء الذكاء الاصطناعي متعدد الخطوات. يحتفظ بملفات taskplan.md و findings.md و progress.md على القرص، وتحقن خطافات دورة الحياة سياق التخطيط المحدد للمشروع. تقرأ الاستعادة التلقائية ملفات تخطيط المشروع فقط. يمكن للأمر الصريح session-catchup.py --metadata فحص بيانات وصفية لجلسات الوكيل…
kl-consistency-test
Write, calibrate, and debug the prefill-vs-decode logprob (KL) consistency tests in sglang -- the two independent conditions a zero requires (every operator batch-invariant, and the two paths computing the same function), which helper separates them, how to pick a threshold once they hold, and how to localize a…
i18n-localization
Internationalization and localization patterns. Detecting hardcoded strings, managing translations, locale files, RTL support.
dsh-web-documentation
Use when adding or editing dsh-web README files, docs, AGENTS.md instructions, user-facing configuration text, or bilingual documentation pairs.
baoyu-youtube-transcript
Downloads YouTube video transcripts/subtitles and cover images by URL or video ID. Supports multiple languages, translation, chapters, and speaker identification. Caches raw data for fast re-formatting. Use when user asks to "get YouTube transcript", "download subtitles", "get captions", "YouTube字幕", "YouTube封面"…
indication-dossier
Build a source-backed biomedical indication dossier. Use when a research task asks for disease biology, target rationale, patient segmentation, biomarkers, trials, drugs, competitive landscape, or translational evidence.