What problem does it solve? Connecting LLMs to multiple MCP servers loads tens of thousands of tokens of tool schemas into every prompt, causing severe context bloat. This Skill solves that by exposing a single run_python tool that executes Python in isolated rootless containers, letting the agent discover and call MCP tools programmatically with roughly 200 tokens of constant overhead. ## Core Features & Use Cases - Token-Efficient Tool Access: Replaces bulk schema loading with on-demand discovery via search_tool_docs() and query_tool_docs(), reducing context overhead by over 95%. - Universal MCP Proxying: Auto-discovers any stdio MCP server (filesystem, GitHub, Slack) configured alongside it and calls their tools from Python code. - Secure Sandboxed Execution: Runs code in rootless Podman or Docker containers with no network, read-only filesystem, dropped capabilities, and configurable memory/timeout limits. - Use Case: Fetch open GitHub issues, analyze them with pandas, generate a chart, and post a summary to Slackโall orchestrated inside one Python execution instead of many LLM round-trips. ## Quick Start Install the package with pip, configure it as an MCP server in Claude Desktop with Podman or Docker running, then ask the agent to run Python code that discovers and calls your other MCP servers' tools.