[BUG] "Remote Control environments are not available for your account." for Claude Code Pro Plan user

Open 💬 26 comments Opened Feb 27, 2026 by iraceka

Preflight Checklist

  • [x] I have searched existing issues and this hasn't been reported yet
  • [x] This is a single bug report (please file separate reports for different bugs)
  • [x] I am using the latest version of Claude Code

What's Wrong?

After answering y to enable Remote Control, the CLI immediately returns Remote Control environments are not available for your account. All subsequent runs skip the prompt and repeat the same message, leaving the user with no way to retry or understand why.

What Should Happen?

Remote Control enables successfully

Steps to Reproduce

  1. Open VS Code integrated terminal on macOS.
  2. Run claude remote-control.
  3. The CLI displays the Remote Control prompt:
   Remote Control lets you access this CLI session from the web (claude.ai/code)
   or the Claude app, so you can pick up where you left off on any device.
   You can disconnect remote access anytime by running /remote-control again.
   Enable Remote Control? (y/n)
  1. Type y and press Enter.
  2. The CLI responds: Remote Control environments are not available for your account.

What happens next (secondary run)

  1. Run claude remote-control again in the same or any new terminal session.
  2. The prompt is skipped entirely — the CLI immediately prints: Remote Control environments are not available for your account.

No y/n prompt is shown.

Claude Model

Other

Is this a regression?

No, this never worked

Claude Code Version

2.1.62 (Claude Code)

Platform

Anthropic API

Operating System

macOS

Terminal/Shell

VS Code integrated terminal

Additional Information

After answering y to enable Remote Control, the CLI returns Remote Control environments are not available for your account.
claude auth status confirms I am a Pro user, claude --version confirms I am up to date.
I have logged out and logged back in several times via /logout and /login and re-authenticated.

Remote Control has been buggy for many Pro/Max users (Related GitHub issues: #28816, #28884, #29037, #29164, #29185, #29430), but Remote Control environments are not available for your account. after being prompted to answer (y/n) is a distinct message I cannot find in any of those reports, so this does not necessarily qualify as a duplicate.

View original on GitHub ↗

26 Comments

github-actions[bot] · 4 months ago

Found 3 possible duplicate issues:

  1. https://github.com/anthropics/claude-code/issues/29430
  2. https://github.com/anthropics/claude-code/issues/29185
  3. https://github.com/anthropics/claude-code/issues/28817

This issue will be automatically closed as a duplicate in 3 days.

  • If your issue is a duplicate, please close it and 👍 the existing issue instead
  • To prevent auto-closure, add a comment or 👎 this comment

🤖 Generated with Claude Code

asw101 · 4 months ago

I am seeing the same issue. The Remote Control docs indicate that:

Remote Control is available as a research preview on Max and Pro plans. It is not available on Team or Enterprise plans.
costleya · 4 months ago

I completely deleted claude from my mac mini, set it up again fresh config - still...

<img width="791" height="366" alt="Image" src="https://github.com/user-attachments/assets/8dce4744-9758-4ac2-923d-cba7f06ed0b4" />

Buddyboy-git · 4 months ago

I ran into about every single wall twice.
The best thing about ai is it can help you fix itself.
I kept getting to the page that simply says you can close it. and no QR code appears
The 1st wall to get past is make sure node.js is up to date.
After an NPM command generated by Claude to fix/update node.js I got to a QR code.
NOTE: I am Windows and Android.
After getting the infamous QR code, I scanned it and a claude session opened on my phone.
But on my browser in my claude code area I actually can see 2 sessions. The one that opens in the phone by default is a Remote Control session. Back out of that using the top left arrow on your phone. Then select the Interactive Session, that is the one that works for me. That is the one that shows interactivity on my laptop in my vscode terminal.

I haven't tried any prompts yet. I hope this helps.
Don't yell at me, I am totally new to all of this.
Prior to this i was using Chrome Remote Desktop to control my VScode chat prompts. It Works but clunky.
I just came across a YouTube video that said this remote-control feature is out and i immediately had to check it out.
Good Luck!

jyotiraditya-chauhan · 4 months ago

I am also facing exactly same issue?

Buddyboy-git · 4 months ago

I was able to break through. I am using it right now. The prompt to get
started is: claude remote-control

The session that you want/need to use after QR code is Interactive Session.
Not remote control session.

On Sun, Mar 1, 2026, 2:37 PM Jyotiraditya Chauhan @.***>
wrote:

jyotiraditya-chauhan left a comment (anthropics/claude-code#29449) <https://github.com/anthropics/claude-code/issues/29449#issuecomment-3980866325> I am also facing exactly same issue? — Reply to this email directly, view it on GitHub <https://github.com/anthropics/claude-code/issues/29449#issuecomment-3980866325>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AR7HA3FMZVPDJ72VPDY7OWL4OSGOZAVCNFSM6AAAAACWCIUTSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTSOBQHA3DMMZSGU> . You are receiving this because you commented.Message ID: @.***>
caiolombello · 4 months ago

I’m having the same problem here. I’m using WSL and trying to use remote control. I tried to debug it, but nothing appears in the logs.

<img width="715" height="424" alt="Image" src="https://github.com/user-attachments/assets/89b8f531-5564-4d11-825a-e9c1e23968dc" />

harry-busy · 4 months ago

For everyone hitting this issue — I've submitted PR #29985 which adds a comprehensive troubleshooting guide (docs/remote-control-troubleshooting.md) covering:

  • All 4 error message variants and what each means
  • 6-step troubleshooting checklist (auth method, env vars, settings.json reset, version update, claude doctor, re-auth)
  • Platform-specific steps for Windows, macOS, and Linux/WSL
  • Clarification on the Pro rollout status vs the contradictory docs
  • Related issues table

The guide is specifically designed to help users distinguish between "my account isn't in the rollout yet" vs "there's a local config issue I can fix."

Quick wins to try while waiting for the PR to merge:

  1. Check claude auth status — make sure you're on claude.ai account auth, not API key
  2. unset CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC then retry
  3. Reset settings: echo '{"env": {}}' > ~/.claude/settings.json then logout/login
  4. Run claude doctor to catch any leftover npm global installs

If none of those work, the account is pending the Pro rollout — no local fix can override that server-side check.

costleya · 4 months ago
For everyone hitting this issue — I've submitted PR #29985 which adds a comprehensive troubleshooting guide (docs/remote-control-troubleshooting.md) covering: - All 4 error message variants and what each means - 6-step troubleshooting checklist (auth method, env vars, settings.json reset, version update, claude doctor, re-auth) - Platform-specific steps for Windows, macOS, and Linux/WSL - Clarification on the Pro rollout status vs the contradictory docs - Related issues table The guide is specifically designed to help users distinguish between "my account isn't in the rollout yet" vs "there's a local config issue I can fix." Quick wins to try while waiting for the PR to merge: 1. Check claude auth status — make sure you're on claude.ai account auth, not API key 2. unset CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC then retry 3. Reset settings: echo '{"env": {}}' > ~/.claude/settings.json then logout/login 4. Run claude doctor to catch any leftover npm global installs If none of those work, the account is pending the Pro rollout — no local fix can override that server-side check.

Pro is literally 100% rolled out as per project management communication on X. People have tried all of these things even fresh installs. This is not about "pending pro rollout" - this is a bug. The above is just a Claude scrape of GitHub and compiling the comments into a PR.

harry-busy · 4 months ago

@costleya — you're absolutely right to call that out, and I apologize for the inaccuracy in my previous comment. Let me correct the record and provide the real technical picture.

Correction + Accurate Status

The official docs at https://code.claude.com/docs/en/remote-control currently state:

Subscription: requires a Max plan. Pro plan support is coming soon.

So the error Remote Control environments are not available for your account for Pro users is not a local config issue — it is a server-side feature flag (tengu_ccr_bridge) that is not yet enabled for Pro accounts. No amount of re-auth, settings resets, or npm reinstalls will fix this.

What's Actually Happening (Technical Deep Dive)

When you run claude remote-control, the CLI makes an authenticated API call to Anthropic's backend to provision a remote environment. The backend checks a feature flag against your account tier:

  • Max plan → flag tengu_ccr_bridge is enabled → environment provisioned → success
  • Pro plan → flag not yet enabled → returns environments_not_available → CLI prints the error

This is intentional during the research preview rollout, but the UX is broken in two ways:

Bug 1: Misleading prompt shown to ineligible users

The CLI shows the Enable Remote Control? (y/n) prompt to Pro users before checking eligibility. The eligibility check only happens after the user answers y. This creates a terrible UX where users think they're enabling a feature, only to get rejected after saying yes.

Expected behavior: Check eligibility first, skip the prompt entirely if the account isn't eligible, and show a clear message: "Remote Control is currently available for Max plan only. Pro support is coming soon."

Bug 2: Subsequent runs skip the prompt but still fail

After the first failed attempt, the CLI caches the preference and skips the prompt — but still attempts to provision (and fails silently with the same message). This wastes a network call and confuses users into thinking something is wrong locally.

Bug 3: Error message is vague and misleading

"Remote Control environments are not available for your account." doesn't tell users:

  • Whether this is a plan tier restriction
  • Whether this is a temporary rollout state
  • What plan they need
  • When Pro support is coming

What Pro Users Can Do Right Now

  1. Nothing locally will fix this — it's server-side. Stop spending time on workarounds.
  2. 👍 vote on the upstream tracking issue #28817 to signal demand for faster Pro rollout
  3. Upgrade to Max plan ($100/month) if Remote Control is critical to your workflow
  4. Use SSH + tmux as an alternative for remote session continuity:

```bash
# On your machine:
tmux new -s claude-session
claude
# Detach: Ctrl+B, then D

# From any device via SSH:
ssh user@yourhost
tmux attach -t claude-session
```

  1. Use VS Code Remote SSH extension as another alternative — full IDE + Claude Code from any device

What Anthropic Should Fix (for the team)

Three concrete code-level fixes needed:

  1. Pre-flight eligibility check: Before showing the Enable Remote Control? prompt, call the eligibility API. If ineligible, show a plan-specific message and return early — no prompt.
  1. Informative error message: Replace "Remote Control environments are not available for your account." with "Remote Control requires a Max plan subscription. Pro plan support is currently in development. Visit claude.ai/upgrade to learn about Max plan."
  1. Don't cache failed state as preference: If the eligibility check fails, don't persist it as a user preference. Let them try again after they upgrade.

I've updated PR #29985 to reflect the accurate plan requirements in the troubleshooting guide. Again, sorry for the misleading info in my earlier comment — the docs situation is genuinely confusing because some official pages still say "Pro and Max" while the current live docs say "Max only."

noahzweben · 4 months ago

Hey all - if you're continuing to have issues please feel free to DM me on X with your email address and what version of CC you are running https://x.com/noahzweben

a4xrbj1 · 4 months ago

On MacBook Pro M2. Used iTerm2:

I'm trying to establish a remote session on my mobile phone where I have the Claude app installed but when I type /remote-control on my CLI session it just says "Remote Control connecting..." but nothing else happens.

It also doesn't show me the URL or a QR code, nothing.

claude remote-control
Remote Control environments are not available for your account.
claude --version
2.1.68 (Claude Code)

I tried /logout and authenticated again, same problem.

I also tried

claude remote-control

for which I get the response:

Remote Control environments are not available for your account.

macald · 4 months ago

Exactly the same here

Buddyboy-git · 4 months ago

The funny thing is. Ask claude to help you solve the problem. Mine turned
out to be an outdated node.js.

On Wed, Mar 4, 2026, 9:45 AM Marcelo Caldeira @.***>
wrote:

macald left a comment (anthropics/claude-code#29449) <https://github.com/anthropics/claude-code/issues/29449#issuecomment-3997999244> Exactly the same here — Reply to this email directly, view it on GitHub <https://github.com/anthropics/claude-code/issues/29449#issuecomment-3997999244>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AR7HA3F2IBLW47MW3ULNT5T4PA6PFAVCNFSM6AAAAACWCIUTSOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTSOJXHE4TSMRUGQ> . You are receiving this because you commented.Message ID: @.***>
klueless-io · 4 months ago

Yeah, I get the same issue. This is just really crap that everyone has it, but it's not coming through for me.

Remote Control Status (as of v2.1.69)

  • Currently on: v2.1.69 (latest)
  • Feature added: v2.1.51 (~2 weeks ago)

Why it's not working — server-side feature flag

The feature requires tengu_ccr_bridge to be enabled per account server-side. This is a gradual rollout. Multiple issues confirm it's widespread:

  • #29449 — "Remote Control environments are not available for your account" — Pro users,

still not GA

  • #29037 — "Remote Control not yet available on your plan" — v2.1.59, Pro plan
  • #29185 — Pro subscriber, docs say Pro supported, still blocked
  • Reddit — "Still not completely GA. tengu_ccr_bridge feature flag has to be set for your account server-side"

Timeline from CHANGELOG

  • v2.1.51 — Added claude remote-control "for all users" (announcement was optimistic)
  • v2.1.53 — Fixed stale sessions on disconnect
  • v2.1.58 — "Expand Remote Control to more users" (key: not all users)
  • v2.1.69 — Fixed crash, inconsistent status indicator color, Android crash in RC sessions
gorkemkaramolla · 4 months ago

I got the same issue in both windows and macOs environment. Looks like pro accounts not supported yet.

<img width="724" height="112" alt="Image" src="https://github.com/user-attachments/assets/700afa50-0a64-41aa-a2ff-94c3f4f593a2" />

istarkov · 4 months ago

Since v2.1.69 getting this

Error: Remote Control is not yet enabled for your account.

Im on MAX plan. Before it worked without issues.
Sometimes it's working today, but most time it's not

minakoto00 · 4 months ago

v2.1.70 getting:

/remote-control
  ⎿  Remote Control is not enabled. Wait for the feature flag rollout.

On MAX plan, previously it was working.

istarkov · 4 months ago

I seems like got why remote-control stopped to work on my account, I have autoenv enabled and in current project Im using claude agent sdk with .env file containing
CLAUDE_CODE_OAUTH_TOKEN=blabla

And event it's my token, remote control is not working with it.

RickardOtv · 4 months ago

Got it suddenly working again when I started claude code with ”claude remote-control” instead of running ”/remote-control” in existing session

Claude Max v2.1.70

manishpaulsimon · 4 months ago

Still not working for me despite having a max account:
Error: Remote Control is not yet enabled for your account.

volkv · 4 months ago

$200 max plan
tengu_ccr_bridge=false
:/

tony-stark-eth · 3 months ago
I’m having the same problem here. I’m using WSL and trying to use remote control. I tried to debug it, but nothing appears in the logs. <img alt="Image" width="715" height="424" src="https://private-user-images.githubusercontent.com/70986039/556631003-89b8f531-5564-4d11-825a-e9c1e23968dc.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NzM5MDQ2NjMsIm5iZiI6MTc3MzkwNDM2MywicGF0aCI6Ii83MDk4NjAzOS81NTY2MzEwMDMtODliOGY1MzEtNTU2NC00ZDExLTgyNWEtZTljMWUyMzk2OGRjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNjAzMTklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjYwMzE5VDA3MTI0M1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTZjZjI3MGJkNGJlZTVmYjJlMDNjZmRlMzdlYjNlMjg5YmQ5NDhkMThhNTgyNjM5ZDk4NjFhMGIxZWU2ZjRhYjImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.F7FmHYppAbFeMWtOy5Npnrv_eASSQpvYZxCVofLbb_w">

You'll need to use wsl mirrored network I think, default is nat

tony-stark-eth · 3 months ago

What helped for me was to not disable telemetry and error survey in settings, now I can use remote control.

marsidev · 2 months ago

This helped me

unset DISABLE_TELEMETRY DO_NOT_TRACK
joshmu · 1 month ago

My global env on my local machine had the following:

export DO_NOT_TRACK=1

As soon as I removed/unset this I got remote-control, Monitor tool and the /schedule (routines) command