[BUG] "Remote Control environments are not available for your account." for Claude Code Pro Plan user
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
- Open VS Code integrated terminal on macOS.
- Run
claude remote-control. - 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)
- Type
yand press Enter. - The CLI responds:
Remote Control environments are not available for your account.
What happens next (secondary run)
- Run
claude remote-controlagain in the same or any new terminal session. - 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.
26 Comments
Found 3 possible duplicate issues:
This issue will be automatically closed as a duplicate in 3 days.
🤖 Generated with Claude Code
I am seeing the same issue. The Remote Control docs indicate that:
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" />
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!
I am also facing exactly same issue?
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:
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" />
For everyone hitting this issue — I've submitted PR #29985 which adds a comprehensive troubleshooting guide (
docs/remote-control-troubleshooting.md) covering:claude doctor, re-auth)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:
claude auth status— make sure you're on claude.ai account auth, not API keyunset CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFICthen retryecho '{"env": {}}' > ~/.claude/settings.jsonthen logout/loginclaude doctorto catch any leftover npm global installsIf 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.
@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:
So the error
Remote Control environments are not available for your accountfor 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:tengu_ccr_bridgeis enabled → environment provisioned → successenvironments_not_available→ CLI prints the errorThis 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 answersy. 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:What Pro Users Can Do Right Now
```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
```
What Anthropic Should Fix (for the team)
Three concrete code-level fixes needed:
Enable Remote Control?prompt, call the eligibility API. If ineligible, show a plan-specific message and return early — no prompt."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."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."
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
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.
I tried /logout and authenticated again, same problem.
I also tried
claude remote-controlfor which I get the response:
Remote Control environments are not available for your account.Exactly the same here
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:
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)
Why it's not working — server-side feature flag
The feature requires
tengu_ccr_bridgeto be enabled per account server-side. This is a gradual rollout. Multiple issues confirm it's widespread:still not GA
tengu_ccr_bridgefeature flag has to be set for your account server-side"Timeline from CHANGELOG
claude remote-control"for all users" (announcement was optimistic)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" />
Since v2.1.69 getting this
Im on MAX plan. Before it worked without issues.
Sometimes it's working today, but most time it's not
v2.1.70 getting:
On MAX plan, previously it was working.
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.
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
Still not working for me despite having a max account:
Error: Remote Control is not yet enabled for your account.
$200 max plan
tengu_ccr_bridge=false
:/
You'll need to use wsl mirrored network I think, default is nat
What helped for me was to not disable telemetry and error survey in settings, now I can use remote control.
This helped me
My global env on my local machine had the following:
As soon as I removed/unset this I got remote-control, Monitor tool and the /schedule (routines) command