MCPcopy Create free account
hub / github.com/IBM/mcp-cli / SessionData

Class SessionData

src/mcp_cli/chat/session_store.py:38–43  ·  view source on GitHub ↗

Complete session data for persistence.

Source from the content-addressed store, hash-verified

36
37
38class SessionData(BaseModel):
39 """Complete session data for persistence."""
40
41 metadata: SessionMetadata
42 messages: list[dict[str, Any]] = Field(default_factory=list)
43 token_usage: dict[str, Any] | None = None
44
45
46class SessionStore:

Calls

no outgoing calls