I spend a lot of my day inside Claude Code. It writes scripts for me, manages my websites, searches listings, handles CRM — basically runs half my business from the terminal.
The problem? I'm not always at my desk. I'm driving between showings, sitting in a coffee shop, or just on the couch and don't want to grab my laptop. And sometimes Claude is mid-task and I need to check on it.
So I figured out how to run Claude Code from my phone. Here are the methods that actually work in 2026.
1. Remote Control (Official — The Easiest)
Anthropic shipped this in February 2026, and it's the cleanest option by far.
How it works: You start a Claude Code session on your computer, run claude remote-control, and it gives you a URL and QR code. Scan it on your phone, and you've got full control of that session from the Claude mobile app.
Your code never leaves your machine — it's just a sync layer between your terminal and your phone. You can kick off a task at your desk, close your laptop, and keep steering it from the train.
The catch: It's currently only available on Claude Max ($200/month). If you're on Pro, you'll have to wait — but it's expected soon.
My take: If you have Max, this is the move. Zero configuration, native experience, just works.
2. SSH + Tailscale + Termius (The Power User Setup)
This is what most developers were doing before Remote Control existed, and it still works great — especially if you're on the Pro plan.
The idea: Your Mac (or whatever machine runs Claude Code) stays on at home. You SSH into it from your phone using Termius, through a Tailscale VPN tunnel, and attach to a persistent tmux session.
Quick setup:
- Install Tailscale on your computer and phone (same account)
- Install Termius on your phone
- On your computer:
tmux new -s claudethen start Claude Code - On your phone: SSH to your computer's Tailscale IP, then
tmux attach -t claude
You're now in the exact same terminal session. Disconnect and reconnect anytime — tmux keeps everything alive.
Tips that save headaches:
- Run
caffeinateon macOS so your machine doesn't sleep - Use MOSH instead of SSH if your connection drops a lot
- Save your
tmux attachcommand as a Termius snippet so it's one tap
My take: This is my daily driver. It's a 15-minute setup once, and then you have permanent phone access to your entire dev environment.
3. Claude iOS App (Native Integration)
Anthropic added Claude Code directly into the Claude iOS app back in late 2025. You link your GitHub, and you can start coding tasks right from the app.
It's good for quick things — fixing a bug, writing a function, reviewing a PR. It's not going to replace a real terminal session for heavy work, but for "I just thought of something and want Claude to handle it," it's perfect.
Downside: It's iOS only and GitHub-focused. If your workflow is more terminal-centric (like mine), you'll probably prefer SSH or Remote Control.
4. Happy Coder (QR Code Pairing)
This one surprised me. Happy Coder is a third-party tool that gives you a polished mobile interface for Claude Code.
Install the CLI (npm install -g happy-coder), run happy in your project directory, scan the QR code on your phone, and you're connected in seconds. No VPN, no SSH keys, no port forwarding.
It even has voice coding — you can literally talk to Claude Code while walking. That's kind of wild.
My take: Great for people who don't want to mess with Tailscale and SSH configs. The QR pairing is genuinely easier than anything else on this list.
5. Termux on Android (Fully Local)
If you're on Android and want Claude Code running directly on your phone — no remote machine needed — Termux makes it possible.
pkg update && pkg upgrade -y
pkg install nodejs git -y
npm install -g @anthropic-ai/claude-code
It works, but it's heavy on battery and memory. Keep your tasks small and focused. This isn't where you refactor an entire codebase — it's where you fix a typo, add a function, or check on something.
Tip: Pair it with a Bluetooth keyboard. Typing code on a phone screen gets old fast.
Which Method Should You Pick?
Here's the honest breakdown:
- You have Claude Max → Use Remote Control. It's built for this.
- You want full terminal access on Pro → SSH + Tailscale + Termius. 15 minutes of setup, permanent access.
- You want zero setup → Happy Coder. QR code and done.
- You're on Android, no computer nearby → Termux. It works, just keep tasks small.
- Quick tasks from iPhone → Claude iOS app. Simple and native.
The Real Takeaway
The fact that you can run an AI coding agent from your phone in 2026 is still kind of insane to me. I use it almost every day — checking on long-running tasks, kicking off quick scripts, managing my websites from the car.
You don't need to be a developer to benefit from this. If you use Claude Code for anything — automation, writing, content, business ops — having it in your pocket changes how you work.
Set it up once. You'll wonder how you managed without it.