Skip to main content
Product··4 min read

Your Agent's Memory, From Your Phone

Claude Code Remote Control just shipped. Your MCP servers travel with it. That means your entire OMEGA memory is now reachable from any device with a browser.

Abstract visualization of a smartphone connecting to a cloud of agent memories

What Just Happened

On February 24, 2026, Anthropic released Claude Code Remote Control as a research preview. The idea is simple: run claude remote-control (or type /rc inside a session) in your terminal, and Claude Code generates a URL and QR code. Scan the code on your phone, and you are talking to your full Claude Code environment from a mobile browser.

The local process makes outbound HTTPS connections only. No inbound ports are opened on your machine. All traffic runs over TLS through the Anthropic API. Your filesystem, MCP servers, tools, and project configuration all stay available on the remote end, exactly as if you were typing in the terminal.

Remote Control is available today on Claude Pro ($20/mo) and Max ($100-200/mo) plans. One remote session at a time. Your terminal must stay open, but the session survives laptop sleep and reconnects automatically when your machine wakes up.

What This Means for OMEGA Users

Here is the line that matters from Anthropic's announcement: “your filesystem, MCP servers, tools, and project configuration all stay available.” MCP servers are not stripped out for the mobile experience. They work.

If you have OMEGA configured as an MCP server in Claude Code, all 12+ tools are accessible through Remote Control. From your phone, you can:

Query past decisions
Riding the subway and need to remember why you chose Postgres over SQLite for that project? omega_query finds it in seconds.
Check task status
Left an agent running overnight? Pull up the session from your phone to see what it finished, what it blocked on, and what it handed off.
Store new memories on the go
Had an idea at dinner? omega_store captures it with full metadata. It will be there when you sit down at your laptop tomorrow.
Monitor long-running agent work
If you kicked off a multi-hour refactor before bed, Remote Control lets you check progress from your phone without walking back to your desk.

This is the first time a persistent memory layer has been accessible from a mobile device without building a separate app. Remote Control turns Claude Code into the app, and OMEGA rides along for free.

How to Set It Up

Three steps. Nothing to install on your phone.

1
Have OMEGA configured as an MCP server
If you already use OMEGA with Claude Code, you are done. If not: pip install omega-memory[server], then omega setup. The setup command registers OMEGA as an MCP server in your Claude Code config.
2
Start Remote Control
Run claude remote-control in your terminal, or type /rc inside an existing Claude Code session. A URL and QR code appear.
3
Open on your phone
Scan the QR code or paste the URL into any mobile browser. You are now connected to your full Claude Code environment, OMEGA tools included.

That is it. No port forwarding, no ngrok, no VPN. The outbound-only architecture means it works behind corporate firewalls, on hotel Wi-Fi, and on cellular connections.

The One Catch

Every MCP tool call requires manual approval. When you ask Claude to query your memory from your phone, you will see a confirmation prompt for the omega_query call and need to tap “Allow.” The same applies to omega_store, omega_checkpoint, and every other tool.

There is no auto-approve mode yet. Anthropic has been clear that this is intentional: Remote Control sessions carry real access to your filesystem and tools, and they want explicit consent for every action. There is a GitHub issue requesting read-only auto-approve for tools that do not modify state, which would make the mobile experience significantly smoother for queries. But for now, every tool call is a tap.

This is consistent with how Anthropic thinks about security. The session runs through their API over TLS, no inbound ports are opened, and every action requires your explicit approval. For a research preview, that is the right tradeoff. It will likely loosen over time as the feature matures.

Practical tip

The approval requirement makes short, targeted queries the sweet spot for mobile use. “What did we decide about the auth architecture?” is one tool call and one tap. A multi-step workflow with five tool calls means five taps. Keep your mobile queries focused.

Give your agent a memory that travels with you.
Two commands. Five minutes. Full memory from any device.
pip3 install omega-memory[server]
omega setup

Works with Claude Code, Cursor, Windsurf, Zed, and any MCP client. Local-first. No API keys. No cloud. Full quickstart guide.