Free Claude Code on local Gemma 4 lives inside the Agent OS in the AI Profit Boardroom
Join
Free Claude Code · local Gemma 4 · verified

Free Claude Code.Now on fast local Gemma 4.

Free Claude Code runs the real Claude Code CLI against free models instead of paying per token. Now that Gemma 4 is fast on Apple Silicon, I pointed it there — so you get real Claude Code coding, running fully on your own Mac, free and fast, with nothing leaving your machine. Here's how I wired it in, with a real run.

A wise owl perched on a glowing terminal whose light has shifted from gold to emerald green, fed by a small green engine, a robed scholar at the console
$0
per token
~62
tok/s · local
100%
on your Mac
1
line to switch
Why now · start here

Gemma 4 got ~90% faster — so local Claude Code is usable

Free Claude Code has always let you run the Claude CLI on a free model. The problem was speed — a slow local model made the coding panel painful. This changed that: Ollama turned on multi-token prediction for Gemma 4 via Apple's MLX engine, so the local model is now fast enough to actually code with. That's what makes free, local Claude Code genuinely usable.

The pieces

What this is built on.

My story · why this matters

I wanted Claude Code without the meter.

Before

I love the Claude Code CLI, but every session ran up a bill.

So I'd hesitate before letting it loose on a big task, watching the cost.

Free Claude Code let me point it at a free model — but the free local option was too slow to enjoy.

So I kept paying, or kept it short.

Then Gemma 4 got fast on my Mac — and I pointed Free Claude Code straight at it.

After

Now I run the real Claude Code CLI on a local model, free, at a speed that feels fine.

My private code never leaves my machine.

I stopped watching the meter and just let it work.

Real Claude Code. Zero per-token cost. Fully on your own Mac.

The receipts

Why listen to me on this.

I run an AI agency with 70+ people where AI handles about 80% of the ops, and a room of operators coding with AI across every kind of business.

3,600+ Founders in the Boardroom
400k YouTube subscribers
38 Countries · live members
163k X / Twitter followers

No invented quotes. The wins are real and written by the members themselves — agency owners, ecom founders, creators, solo operators across 38 countries. Read them in their own words.

Read the 158-page wins doc →
Before you scroll on —

Commit to one free coding session tonight.

Below is exactly how I wired Free Claude Code to local Gemma 4 — one line — plus a real run.

Here's the deal I want to make with you.

Before you sleep tonight, point Free Claude Code at Gemma 4 and run one real coding task on it. Free, fully on your own machine.

Because once you've had the Claude Code experience with no meter running, you start reaching for it constantly — and that changes how much you build.

Be one of the people who runs it today.

Commit to the transition. One free, local coding session tonight.

How it works

Real Claude Code — pointed at a free local model.

Here's the trick. Free Claude Code runs a tiny local proxy (fcc-server) that speaks Claude's own API but routes your requests to whatever model you choose — OpenRouter, Kimi, or a local one. Point that at Ollama's fast Gemma 4, and the actual Claude Code CLI runs on a free local model without knowing the difference.

Claude Code CLIthe real thing fcc-server proxyspeaks Claude's API fast local Gemma 4 · on your Mac
The real Claude Code CLI → the local proxy → fast free Gemma 4. Claude Code never knows it's not paying.
Do it yourself

One line to switch it to Gemma 4.

Free Claude Code reads its model from ~/.fcc/.env. Point it at the fast MLX Gemma 4 (Ollama's a supported local provider), and restart the proxy:

# in ~/.fcc/.env
MODEL="ollama/gemma4-mlx"        # fast MLX+MTP Gemma 4, local + free
# (Ollama is already a provider — OLLAMA_BASE_URL=http://localhost:11434)

# then restart the proxy
fcc-server

That's it. Now the Claude Code CLI — with ANTHROPIC_BASE_URL pointed at the local proxy — runs every request on Gemma 4. No API key charged, nothing leaves your Mac.

▶ real run · verified on my Mac

I asked Free Claude Code for a prime-number function.

Here's an actual response from the proxy — note the model tag at the top: it really is running on local Gemma 4, and the code is correct.

free claude code → gemma4-mlxmodel: gemma4-mlx stop: end_turn > write a short Python is_prime(n) def is_prime(n): if n < 2: return False for i in range(2, int(n**0.5) + 1): if n % i == 0: return False return True
By the numbers

What changes the moment you switch.

$$$
Cloud Claude
per session
$0
Local Gemma 4
per session
Same Claude Code CLI, two very different meters. Local Gemma 4 is free per token.
Your codeon your Mac Local Gemma 4never leaves the machine nothing crosses to the cloud
Fully local means your private code never leaves your machine — no cloud round-trip.
You ask Gemma 4 writes code ✓ it runs
The run above proved it: you ask, local Gemma 4 writes correct code, it runs. No meter.
Skip the setup

Free Claude Code is already wired inside the Agent OS.

You can do the config above yourself — or open the Agent OS, where Free Claude Code on local Gemma 4 is already set up, next to everything else, sharing one memory.

Free Claude Code panel — real Claude Code, on free local Gemma 4
The Local Engine — fast MLX Gemma 4, offline,
The Claude Workspace — every file it writes, saved + previewed
Agent Kanban — Planner → Builder → Reviewer on a board
Every CLI you already pay for — Claude, Codex, Gemini, Kimi, GLM, Grok
The AI Mastermind — models debate, then reach one answer
Memory that knows your codebase — context every session
3,600+ founders + me shipping new tutorials daily

You're not buying a tool. You're getting the whole operating system I run a seven-figure business on.

Get the Agent OS →
Inside the AI Profit Boardroom · skool.com/ai-profit-lab
link in the description ↑
Doesn't running the Agent OS burn a fortune in tokens?

No — this guide is a perfect example of why not. Free Claude Code on local Gemma 4 means the real Claude Code experience costs $0 per token and runs on your own machine. The Agent OS runs the everyday 90% on a free local model, slots in free APIs, and for the frontier stuff drives the CLIs you already pay for (your Claude subscription already includes the Claude CLI — so you're not paying twice).

It's a layer on top of what you already own, not a new meter. Plus the Boardroom has full token-optimisation tutorials.

Old way vs new way

How most people run Claude Code. And how I do it now.

Old way — pay per session meter running
  • Every Claude Code session costs tokens
  • You hesitate before big tasks
  • Your code goes to a cloud API
  • The free local option was too slow
  • So you kept paying, or kept it short
New way — Free Claude Code on Gemma 4 · ~62 tok/s
  • The real Claude Code CLI, free per token
  • Let it loose — nothing's ticking
  • Your code never leaves your Mac
  • Fast local Gemma 4 makes it usable
  • One line in a config file to switch
Three beliefs to drop

What's holding you back.

Wrong: "Free Claude Code must be a watered-down clone."

Right: It's the actual Claude Code CLI — the real tool — just pointed at a different model through a local proxy. Same commands, same experience, no per-token bill.

Wrong: "A local model can't write real code."

Right: The run above is real — Gemma 4 wrote a correct prime-number function, tagged as the local model. For everyday coding help, a fast local Gemma 4 is genuinely useful.

Wrong: "Setting up a proxy sounds hard."

Right: It's one line in a config file and one command to restart. And inside the Agent OS it's already done — you just start coding.

Don't take my word for it

158 pages of members already coding with this stack — real businesses, real wins, in their own words.

Read the 158-page wins doc →
Your move

The Claude Code experience, with no meter.

Free Claude Code on fast local Gemma 4 is the real coding tool, running for free on your own machine. That's the kind of thing that quietly changes how much you build in a week.

Inside the AI Profit Boardroom you get the full Agent OS — Free Claude Code on Gemma 4 already wired, the fast local engine, the Claude Workspace where every build is saved, Agent Kanban, every CLI you already pay for in one dashboard, the AI Mastermind, memory that knows your codebase, a 30-day roadmap, daily tutorials, coaching calls, and 3,600+ founders across 38 countries building alongside you. Every new update gets folded in the week it lands.

It's the operating system I run a seven-figure business on. You get the whole thing.

Get the Agent OS →
Inside the AI Profit Boardroom · skool.com/ai-profit-lab
link in the description ↑
The real Claude Code, on a free local model, on your own Mac. That's the version that pays for itself instantly.

Point Free Claude Code at Gemma 4 and run one task tonight. I'll see you in the next one.

Free Claude Code on local Gemma 4 · fcc-server + Ollama MLX · verified 2 July 2026 · Used in 38 countries