Claude Code Goes Mobile: Anthropic Launches Remote Control Feature
Anthropic's new Remote Control mode lets developers command Claude Code from their iPhone or Android while the agent keeps running on their local machine.
Claude Code Goes Mobile: Anthropic Launches Remote Control
Anthropic today released a significant quality-of-life upgrade for developers: Remote Control, a new mode for Claude Code that lets you steer your coding agent from a smartphone or tablet while it keeps running on your desktop machine.
What Is Remote Control?
Until now, Claude Code was tied to wherever you sat: your terminal, your IDE, your desktop app. If you kicked off a long-running task — say, refactoring a module or scaffolding a new feature — you had to stay at your desk or risk losing the thread.
Remote Control breaks that constraint. Announced this morning by Claude Code Product Manager Noah Zweben, it creates a secure synchronisation layer between your local terminal session and the Claude mobile app (iOS and Android). You start a task at your desk, scan a QR code, and continue from your phone — couch, coffee shop, or dog walk included.
How It Works
Once you update to Claude version 2.1.52, getting started is straightforward:
cd your-project
claude remote-control # or use /rc inside a session
The terminal displays a unique session URL and a scannable QR code. Open that URL on your phone or tablet and both surfaces stay in full sync: messages, tool results, file edits. You can also toggle the QR display on and off with the spacebar.
The architecture is deliberately private-first. Your local machine makes an outbound connection to Anthropic's API — no inbound ports opened, no SSH exposure. Your files, environment variables, and any configured MCP (Model Context Protocol) servers never leave your machine; only the encrypted chat and tool results travel through the bridge. The agent continues running locally, powered by Opus 4.6 or Sonnet 4.6, with full access to your filesystem and project configuration.
Who Can Use It?
Remote Control launches as a Research Preview for subscribers on the Claude Max tier ($100–$200 USD/month). Anthropic confirmed on X that Claude Pro ($20/month) access is coming soon. Team and Enterprise plans are not included in this initial phase.
From Community Hacks to Official Feature
Developers have wanted mobile access to their terminal-based AI workflows for a while. Before today's release, the workaround landscape looked like this:
- Tailscale for secure tunnelling
- Termius or Termux for mobile SSH
- Tmux for session persistence
- Custom WebSocket bridges for a responsive UI
It worked, but it was brittle and required real effort to set up. Anthropic's official solution collapses that stack into a single command.
Why It Matters
The release is positioned not just as a technical feature but as a philosophy: keeping developers in a "flow state" even when they step away from their desk. The documentation frames it simply — "Claude keeps running on your machine, and you can control the session from the Claude app."
For longer-running agentic tasks — test suites, code generation pipelines, research agents — this matters a lot. You no longer need to babysit a terminal. You can approve a plan, let Claude run, step out for a meeting, and check progress on your phone the same way you'd glance at a Slack notification.
The Bigger Picture
Remote Control is a small but telling indicator of where agentic development is heading. Agents are increasingly long-running processes, not quick queries. The tools around them — persistence, remote access, multi-surface UIs — are starting to catch up to that reality.
Claude Code has grown rapidly since launch, attracting both professional engineers and "vibe coders" who build full applications in plain English. A mobile command interface makes the tool considerably more accessible to the latter group and more productive for the former.
If you're on Claude Max, you can try it now at code.claude.com/docs/en/remote-control.
Sources: VentureBeat, Anthropic on X, Official Docs