Issue
(Edit from @crondinini-ant for other users)
When clicking "Connect" on an MCP server in Claude Dekstop, this takes you to claude.ai in the browser.
We identified a bug where this does not work if you are NOT logged in to Claude.ai prior to this.
It also does not work if you are logged in a different account.
We are working on fix, but workaround is to make sure to be logged in to the same account in the browser BEFORE clicking "Connect" in Claude Desktop.
Original Reported Issue
MCP server URL
https://app.copient.ai/mcp
Where does the issue occur?
When pressing the Connect button
Transport used
streamable-http
Client registration type
Dynamic Client Registration (DCR)
SSE only: Does your server return the expected status code for POST requests?
Not applicable (my server does not use SSE)
When did you last reproduce this?
2026-02-02 11:00 AM EST
Browser and OS
Chrome on macOS 15.x (Sequoia)
Describe the issue
After adding https://app.copient.ai/mcp as a custom connector in Claude Desktop settings:
- Discovery succeeds — the button changes from spinner to "Connect", meaning Claude successfully fetched
/.well-known/oauth-protected-resource, /.well-known/oauth-authorization-server, and completed DCR registration via POST /mcp/oauth/register.
- Clicking "Connect" opens the browser to
claude.ai/login?returnTo=/api/organizations/{org}/mcp/start-auth/{connector-id}?redirect_url=claude://claude.ai/settings/connectors?&open_in_browser=1
- The flow stalls at the Claude.ai login/redirect page with a spinner. The authorization flow never reaches our server's
/mcp/oauth/authorize endpoint.
The flow DID complete successfully once for a different user session where the browser was already logged into Claude.ai. After that successful connection, attempting to reconnect (after removing the connector) no longer works.
Issue details
Server access logs confirm Claude's infrastructure successfully:
GET /.well-known/oauth-authorization-server → 200
GET /.well-known/oauth-protected-resource → 200
POST /mcp/oauth/register → 201
But then:
GET /mcp/oauth/authorize → never called
POST /mcp/oauth/token → never called
Claude's auth proxy appears to get stuck between receiving the DCR registration response and redirecting the user to our authorization endpoint.
When the flow did work once, the authorize URL was:
https://app.copient.ai/mcp/oauth/authorize?response_type=code&client_id=...&redirect_uri=https://claude.ai/api/mcp/auth_callback&code_challenge=...&code_challenge_method=S256&state=...&scope=read:progress+read:assignments+read:analysis+read:conversations+read:meetings+read:team_progress+read:team_analytics+read:clients+read:cross_client_analytics&resource=https://app.copient.ai/mcp
Expected behavior
After clicking "Connect":
- Claude.ai auth proxy should redirect user to our
/mcp/oauth/authorize endpoint
- User logs into Copient, approves consent
- Redirect back to Claude.ai with auth code
- Claude.ai exchanges code for token via
POST /mcp/oauth/token
- Connection established
Logs from your server
# Only these requests appear from Claude's infrastructure:
GET /.well-known/oauth-authorization-server 200
GET /.well-known/oauth-protected-resource 200
POST /mcp/oauth/register 201
# The following NEVER appear:
# GET /mcp/oauth/authorize (user redirect)
# POST /mcp/oauth/token (code exchange)
Additional context
OAuth metadata (verified live at https://app.copient.ai/.well-known/oauth-authorization-server):
{
"issuer": "https://app.copient.ai",
"authorization_endpoint": "https://app.copient.ai/mcp/oauth/authorize",
"token_endpoint": "https://app.copient.ai/mcp/oauth/token",
"registration_endpoint": "https://app.copient.ai/mcp/oauth/register",
"token_endpoint_auth_methods_supported": ["none"],
"code_challenge_methods_supported": ["S256"],
"grant_types_supported": ["authorization_code"],
"response_types_supported": ["code"]
}
This is the same pattern reported by multiple developers in #5 — particularly the report from @paulditerwich showing that Claude.ai receives the auth callback with ?code=... but never calls the /token endpoint, and the reports from @francisbrero and @Hulupeep showing similar flows.
The server works correctly when tested end-to-end via curl and with manual OAuth flows. The issue appears to be in Claude's auth proxy between DCR completion and the authorization redirect.
Issue
(Edit from @crondinini-ant for other users)
When clicking "Connect" on an MCP server in Claude Dekstop, this takes you to
claude.aiin the browser.We identified a bug where this does not work if you are NOT logged in to Claude.ai prior to this.
It also does not work if you are logged in a different account.
We are working on fix, but workaround is to make sure to be logged in to the same account in the browser BEFORE clicking "Connect" in Claude Desktop.
Original Reported Issue
MCP server URL
https://app.copient.ai/mcp
Where does the issue occur?
When pressing the Connect button
Transport used
streamable-http
Client registration type
Dynamic Client Registration (DCR)
SSE only: Does your server return the expected status code for POST requests?
Not applicable (my server does not use SSE)
When did you last reproduce this?
2026-02-02 11:00 AM EST
Browser and OS
Chrome on macOS 15.x (Sequoia)
Describe the issue
After adding
https://app.copient.ai/mcpas a custom connector in Claude Desktop settings:/.well-known/oauth-protected-resource,/.well-known/oauth-authorization-server, and completed DCR registration viaPOST /mcp/oauth/register.claude.ai/login?returnTo=/api/organizations/{org}/mcp/start-auth/{connector-id}?redirect_url=claude://claude.ai/settings/connectors?&open_in_browser=1/mcp/oauth/authorizeendpoint.The flow DID complete successfully once for a different user session where the browser was already logged into Claude.ai. After that successful connection, attempting to reconnect (after removing the connector) no longer works.
Issue details
Server access logs confirm Claude's infrastructure successfully:
GET /.well-known/oauth-authorization-server→ 200GET /.well-known/oauth-protected-resource→ 200POST /mcp/oauth/register→ 201But then:
GET /mcp/oauth/authorize→ never calledPOST /mcp/oauth/token→ never calledClaude's auth proxy appears to get stuck between receiving the DCR registration response and redirecting the user to our authorization endpoint.
When the flow did work once, the authorize URL was:
Expected behavior
After clicking "Connect":
/mcp/oauth/authorizeendpointPOST /mcp/oauth/tokenLogs from your server
Additional context
OAuth metadata (verified live at https://app.copient.ai/.well-known/oauth-authorization-server):
{ "issuer": "https://app.copient.ai", "authorization_endpoint": "https://app.copient.ai/mcp/oauth/authorize", "token_endpoint": "https://app.copient.ai/mcp/oauth/token", "registration_endpoint": "https://app.copient.ai/mcp/oauth/register", "token_endpoint_auth_methods_supported": ["none"], "code_challenge_methods_supported": ["S256"], "grant_types_supported": ["authorization_code"], "response_types_supported": ["code"] }This is the same pattern reported by multiple developers in #5 — particularly the report from @paulditerwich showing that Claude.ai receives the auth callback with
?code=...but never calls the/tokenendpoint, and the reports from @francisbrero and @Hulupeep showing similar flows.The server works correctly when tested end-to-end via curl and with manual OAuth flows. The issue appears to be in Claude's auth proxy between DCR completion and the authorization redirect.