From 1f84764639507b943a67471a192d163fb4a7d89f Mon Sep 17 00:00:00 2001 From: "Michael@WCD" Date: Thu, 17 Sep 2026 23:11:22 -0400 Subject: [PATCH] docs: correct app initialization handshake example --- specification/2026-01-26/apps.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/2026-01-26/apps.mdx b/specification/2026-01-26/apps.mdx index 43fef209d..de0dbc124 100644 --- a/specification/2026-01-26/apps.mdx +++ b/specification/2026-01-26/apps.mdx @@ -458,9 +458,9 @@ function onNotification(method: string, handler: (params: any) => void) { } -const initializeResult = await sendRequest("initialize", { - capabilities: {}, - clientInfo: {name: "My UI", version: "1.0.0"}, +const initializeResult = await sendRequest("ui/initialize", { + appCapabilities: {}, + appInfo: { name: "My UI", version: "1.0.0" }, protocolVersion: "2026-01-26", }); ```