We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a9e2db commit 521eca9Copy full SHA for 521eca9
src/mcp_agent/cli/auth/models.py
@@ -1,7 +1,7 @@
1
"""Authentication models for MCP Agent Cloud CLI."""
2
3
import json
4
-from dataclasses import dataclass
+from dataclasses import dataclass, field
5
from datetime import datetime
6
from typing import Optional
7
@@ -11,7 +11,7 @@ class UserCredentials:
11
"""User authentication credentials and identity information."""
12
13
# Authentication
14
- api_key: str
+ api_key: str = field(repr=False)
15
token_expires_at: Optional[datetime] = None
16
17
# Identity
0 commit comments