claude-code - 💡(How to fix) Fix [BUG] Claude Pro plan not fully recognized, preventing some features from working (like remote-control) [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46337Fetched 2026-04-11 06:22:56
View on GitHub
Comments
1
Participants
2
Timeline
5
Reactions
0
Author
Timeline (top)
labeled ×3commented ×1cross-referenced ×1

Error Message

Output: Error: Remote Control requires a claude.ai subscription. Run claude auth login to sign in with your claude.ai account. 3. Running claude remote-control from the command line should not show an error indicating that a subscription is required when the logged-in user has a valid and paid-current subscription at Pro or higher

Error Messages/Logs

Root Cause

This initially manifested itself by hiding the /remote-control and /rc commands in Claude Code terminal, and this was identified as the root cause.

Code Example

{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty"
}

---

{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty"
}

---

{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty",
  "subscriptionType": "pro"
}

---
RAW_BUFFERClick to expand / collapse

Preflight Checklist

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

What's Wrong?

Installed version: 2.1.100

Subscription status is not consistently recognized. Claude Web and the Claude desktop app acknowledge I have a Pro subscription, but claude auth status does not return a subscriptionType property at all. Output is:

{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty"
}

This initially manifested itself by hiding the /remote-control and /rc commands in Claude Code terminal, and this was identified as the root cause.

Troubleshooting steps taken:

  1. Tried enabling remote control from the command line: claude remote-control

Output: Error: Remote Control requires a claude.ai subscription. Run claude auth login to sign in with your claude.ai account.

  1. Checked credential file to confirm subscriptionType is set (type $env:USERPROFILE\.claude\.credentials.json)

"subscriptionType":"pro"

  1. Logged out of Claude Web, Claude desktop app, Claude Code CLI (claude auth logout)
  2. Ensure no ANTHROPIC_API_KEY env value set (echo $env:ANTHROPIC_API_KEY)
  3. Logged in to Claude Code CLI (claude auth login) and authenticated via Web
  4. Checked status again (claude auth status); still no subscriptionType value present:
{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty"
}

What Should Happen?

  1. The subscriptionType property should be returned by claude auth status:
{
  "loggedIn": true,
  "authMethod": "oauth_token",
  "apiProvider": "firstParty",
  "subscriptionType": "pro"
}
  1. The /remote-control (and shorthand /rc) commands should show in the available commands list
  2. Running claude remote-control from the command line should not show an error indicating that a subscription is required when the logged-in user has a valid and paid-current subscription at Pro or higher

Error Messages/Logs

Steps to Reproduce

  1. Subscribe to a Pro account
  2. Install Claude Code CLI (currently on v2.1.100)
  3. Log in to the account using claude auth login and follow the steps after the Web page loads
  4. Return to the terminal
  5. Run claude auth status
  6. Confirm subscriptionType is not present in the JSON object

Claude Model

Sonnet (default)

Is this a regression?

I don't know

Last Working Version

No response

Claude Code Version

2.1.100

Platform

Anthropic API

Operating System

Windows

Terminal/Shell

Windows Terminal

Additional Information

No response

extent analysis

TL;DR

The claude auth status command not returning the subscriptionType property may be due to an authentication or API issue, and verifying the authentication flow and checking for updates to the Claude Code CLI may help resolve the issue.

Guidance

  • Verify that the subscriptionType is correctly set in the .credentials.json file after logging in with claude auth login.
  • Check the Claude Code CLI version and consider updating to a newer version if available, as the issue may be resolved in a later version.
  • Try resetting the authentication credentials by running claude auth logout and then logging back in with claude auth login to see if the issue persists.
  • If the issue continues, try checking the Anthropic API documentation for any changes to the authentication or subscription API endpoints.

Notes

The issue may be specific to the Windows platform or the Sonnet model, and further investigation may be needed to determine the root cause.

Recommendation

Apply workaround: Try resetting the authentication credentials and verifying the subscriptionType in the .credentials.json file, as this may resolve the issue without requiring an update to the Claude Code CLI.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING