From aeed81a3a6b659279ea3def88a30fc7f5d344424 Mon Sep 17 00:00:00 2001 From: Rafael Thayto Date: Thu, 29 Jan 2026 14:24:47 -0300 Subject: [PATCH 1/2] docs: fix basic-host setup instructions in quickstart Add missing root-level npm install and build steps before running the basic-host example. Without these steps, the example fails because it imports from dist/src/ which doesn't exist until the root package is built. Fixes setup failure when following quickstart tutorial. --- docs/quickstart.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 8146824a..f34e9293 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -447,8 +447,10 @@ MCP server listening on http://localhost:3001/mcp ```bash git clone https://github.com/modelcontextprotocol/ext-apps.git -cd ext-apps/examples/basic-host +cd ext-apps npm install +npm run build +cd examples/basic-host npm start ``` From e5daa92ebd3e9d4701a21b973eb8875033abeb34 Mon Sep 17 00:00:00 2001 From: Rafael Thayto Date: Thu, 29 Jan 2026 15:57:43 -0300 Subject: [PATCH 2/2] Update quickstart.md Co-authored-by: Jonathan Hefner --- docs/quickstart.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index f34e9293..99ee795c 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -449,7 +449,6 @@ MCP server listening on http://localhost:3001/mcp git clone https://github.com/modelcontextprotocol/ext-apps.git cd ext-apps npm install -npm run build cd examples/basic-host npm start ```