From 24e29f62f916b6cc8b0516e0965b03926ac107fe Mon Sep 17 00:00:00 2001 From: hwanggg / Nitro <101684310+GunnGu@users.noreply.github.com> Date: Mon, 24 Nov 2025 09:17:34 +0900 Subject: [PATCH] fix: Correct broken links in README.md examples/simple-example -> examples/simple-server --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7109e784..393d64ffe 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This repo provides: - [types.ts](./src/types.ts): Types of JSON-RPC messages used to communicate between Apps & their host - Note that MCP Apps also use some standard MCP messages (e.g. `tools/call` for the App to trigger actions on its originating Server - these calls are proxied through the Host), but these types are the additional messages defined by the extension -- [examples/simple-example](./examples/simple-example): Example Server + Apps +- [examples/simple-server](./examples/simple-server): Example Server + Apps - [server.ts](./examples/simple-server/server.ts): MCP server with two tools that declare UI resources of Apps to be show in the chat when called - [ui-react.tsx](./examples/simple-server/src/ui-react.tsx): React App returned by the `create-ui-react` tool shows how to use the `useApp` hook to register MCP callbacks - [ui-vanilla.tsx](./examples/simple-server/src/ui-vanilla.ts): vanilla App returned by the `create-ui-vanilla`