diff --git a/.mcp.json b/.mcp.json index 80268502752..53c636811dc 100644 --- a/.mcp.json +++ b/.mcp.json @@ -2,13 +2,7 @@ "mcpServers": { "superset": { "type": "http", - "url": "https://api.superset.sh/api/agent/mcp", - "oauth": { - "clientId": "claude-code", - "authorizationUrl": "https://api.superset.sh/api/auth/mcp/authorize", - "tokenUrl": "https://api.superset.sh/api/auth/mcp/token", - "scopes": ["openid", "profile", "email"] - } + "url": "https://api.superset.sh/api/agent/mcp" }, "expo-mcp": { "type": "http", diff --git a/apps/web/src/app/oauth/consent/components/ConsentForm/ConsentForm.tsx b/apps/web/src/app/oauth/consent/components/ConsentForm/ConsentForm.tsx index 3e0b8967a9c..62cecef7240 100644 --- a/apps/web/src/app/oauth/consent/components/ConsentForm/ConsentForm.tsx +++ b/apps/web/src/app/oauth/consent/components/ConsentForm/ConsentForm.tsx @@ -26,6 +26,7 @@ interface Organization { interface ConsentFormProps { consentCode: string; clientId: string; + clientName?: string; scopes: string[]; userName: string; organizations: Organization[]; @@ -57,6 +58,7 @@ const SCOPE_DESCRIPTIONS: Record< export function ConsentForm({ consentCode, clientId, + clientName, scopes, userName, organizations, @@ -134,16 +136,16 @@ export function ConsentForm({ } }; - const clientName = getClientDisplayName(clientId); + const displayName = clientName ?? getClientDisplayName(clientId); return (
- {clientName} is + {displayName} is requesting access to your Superset account