diff --git a/ui-tui/src/components/branding.tsx b/ui-tui/src/components/branding.tsx
index fc019ac86..919c34b61 100644
--- a/ui-tui/src/components/branding.tsx
+++ b/ui-tui/src/components/branding.tsx
@@ -126,11 +126,36 @@ export function SessionPanel({ info, sid, t }: SessionPanelProps) {
{section('Tools', info.tools, 8, 'more toolsets…')}
{section('Skills', info.skills)}
+
+ {info.mcp_servers && info.mcp_servers.length > 0 && (
+
+
+ MCP Servers
+
+
+ {info.mcp_servers.map(s => (
+
+ {` ${s.name} `}
+ {`[${s.transport}]`}
+ :
+ {s.connected ? (
+
+ {s.tools} tool{s.tools === 1 ? '' : 's'}
+
+ ) : (
+ failed
+ )}
+
+ ))}
+
+ )}
+
{flat(info.tools).length} tools{' · '}
{flat(info.skills).length} skills
+ {info.mcp_servers?.length ? ` · ${info.mcp_servers.length} MCP` : ''}
{' · '}
/help for commands
diff --git a/ui-tui/src/types.ts b/ui-tui/src/types.ts
index 32e99983a..98cc31203 100644
--- a/ui-tui/src/types.ts
+++ b/ui-tui/src/types.ts
@@ -51,8 +51,16 @@ export type Role = 'assistant' | 'system' | 'tool' | 'user'
export type DetailsMode = 'hidden' | 'collapsed' | 'expanded'
export type ThinkingMode = 'collapsed' | 'truncated' | 'full'
+export interface McpServerStatus {
+ connected: boolean
+ name: string
+ tools: number
+ transport: string
+}
+
export interface SessionInfo {
cwd?: string
+ mcp_servers?: McpServerStatus[]
model: string
release_date?: string
skills: Record