Skip to content

Conversation Observability Summary Get

DEPRECATED ALIAS — use session_summary_get instead. Same callable, shorter canonical name. Look up the cached tldr + topic summaries for one session_id; returns None when nothing has been summarized yet.

MCP name: conversation_observability_summary_get

Category: conversation_observability

Parameters

Name Type Required Description
session_id str Yes Full or 8-char prefix session UUID.

Details

Alias of session_summary_get. Both names bind to the same Python callable (session_summary_row); the long namespace prefix is preserved for back-compat. Reach for session_summary_get in new code.

Returns the row dict: {session_id, tldr, topic_count, generated_at, model, profile, backend, prompt_version, summary_schema_version, selection_version, cache_version, status, error, topics: [...]}. For the topic-tree alone, an agent can also use drill_tree(domain="summary", node_id=f"conversation_session:{sid}", depth="summary") — that's the canonical agent-facing path for navigating summary trees.