Skip to content

Commit dd3c629

Browse files
authored
Update README.md
1 parent 01e5cd8 commit dd3c629

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,18 @@ MCP Apps are proposed standard inspired by [MCP-UI](https://mcpui.dev/) and [Ope
77
This repo provides:
88
- [types.ts](./src/types.ts): Types of JSON-RPC messages used to communicate between Apps & their host
99
- 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
10-
- [examples/simple-example](./examples/simple-example):
10+
11+
- [examples/simple-example](./examples/simple-example): Example Server + Apps
1112
- [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
1213
- [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
1314
- [ui-vanilla.tsx](./examples/simple-server/src/ui-vanilla.ts): vanilla App returned by the `create-ui-vanilla`
15+
1416
- [main/specification/draft/apps.mdx](./main/specification/draft/apps.mdx): The Draft Extension Specification. It's still... in flux! Feedback welcome! (also see discussions in [SEP-1865](https://github.com/modelcontextprotocol/modelcontextprotocol/pull/1865)).
17+
1518
- [message-transport](./src/message-transport.ts): `PostMessageTransport` class that uses `postMessage` to exchange JSON-RPC messages between windows / iframes
19+
1620
- [app.ts](./src/app.ts): `App` class used by an App to talk to its host
21+
1722
- [app-bridge.ts](./src/app-bridge.ts): `AppBridge` class used by the host to talk to a single App
1823

1924
What this repo does NOT provide:

0 commit comments

Comments
 (0)