szeider-python-coder — Summary
agentic-python-coder is a dual-mode Python execution framework: a coder CLI (ReAct agent using LangGraph over OpenRouter) and an ipython_mcp MCP server that exposes a persistent IPython kernel to any MCP-compatible client. The coder agent takes a task (inline, file, or interactive), executes Python iteratively with python_exec, verifies solutions against every constraint before calling save_code, and terminates. The MCP server supports multi-kernel operation for parallel agents. Both share the same IPython kernel for stateful execution. Published on PyPI as agentic-python-coder. With only 3 stars and last commit February 2026, this is primarily notable for its multi-kernel MCP design and its academic research context (associated with a published arxiv paper).
Differs from seeds: No seed ships a standalone Python execution agent. Closest to claude-flow's MCP-anchored toolserver but the MCP server is minimal (4 tools: execute, reset, status, interrupt) and the primary value is the persistence across executions (IPython kernel state). Unlike all seeds, this is a LangGraph-based agent, not a Claude Code plugin.