Offload Routine Claude Code Work to Gemma via offload-mcp MCP Server

The offload-mcp tool is an MCP server designed to let Claude offload routine work to free model APIs, specifically using Gemma via the Google GenAI API. The goal is to avoid burning expensive Claude Code or Codex context on small tasks and to bypass the performance limitations of running local models on hardware like a MacBook Air.
Key Details
- Handles: commit messages, PR summaries, translations, docstrings, source diff/file summaries, and freeform prompts.
- Freeform mode: send almost any routine prompt to a cheaper model instead of using Claude.
- Source-based mode: reads local diffs/files directly through the MCP server and reports estimated primary input tokens saved.
- Default model chain uses Gemma, but model IDs are configurable.
- Repository: https://github.com/peterhadorn/offload-mcp
The author notes they didn't find another tool on GitHub to handle this, and the API path is much more practical for small jobs than running locally.
📖 Read the full source: r/ClaudeAI
👀 See Also

nan-forget: Local AI coding memory in a single SQLite file
nan-forget is a memory tool for AI coding agents that stores context in a single SQLite file (~3MB) with no background services. It uses a 3-stage retrieval pipeline and works across Claude Code, Cursor, and terminal via CLI.

Claude Code's Read Tool Silently Downscales Images, Causing Hallucinations
Claude Code's `read` tool silently downscales images before the model sees them, leading to degraded output and unrecognized hallucinations when extracting text from screenshots.

General Bots: Open-source AI agent platform for self-hosted enterprise automation
General Bots is an open-source platform started in 2019 that provides AI agents, workflow automation, document processing, and integrations with local AI model support, designed for organizations needing full control over their infrastructure.

Claude Code Container Provides Zero-Config Docker Isolation for Claude Code
Claude Code Container (ccc) is a free, open-source tool that automatically creates per-project Docker containers for Claude Code with full isolation and zero configuration. It forwards host environment variables, mounts SSH keys, provides transparent localhost proxy, and includes Chromium with chrome-devtools MCP pre-configured.