Several Dev.to posts describe community projects that connect Gemini’s stateful Interactions API for image generation and editing to different AI coding agents via the Model Context Protocol (MCP). The approach centers on the Gemini model gemini-3.1-flash-lite-image (nicknamed “NB2Lite”), which supports an Interactions API workflow where each image interaction returns an interaction_id that is reused to apply incremental edits across multiple turns while preserving the existing visual context. Each project wraps this capability in a small FastMCP server (nb2lite-agent) exposing four tools: generate_image, edit_image (stateful edits using the latest interaction_id), edit_local_image (edits an existing local image by uploading it), and get_help (reports configuration such as API key status, model, and output directory). The corresponding “skill” (for Antigravity CLI, Claude Code, Kiro, and Codex) provides workflow guidance, such as chaining only the newest interaction_id, using incremental edit descriptions, and selecting aspect ratio at generation time. The repos also provide installation paths, including plugin/skill marketplace installs, cloning and bootstrapping scripts, project-scoped installation, and optional Docker-based server runs. All posts include examples and describe “dogfooding,” noting that each article’s cover image is generated by the same skill and MCP tools described.