From 3028b2b78d102f0506b59cae85dc40642951ff6d Mon Sep 17 00:00:00 2001 From: Robin Moffatt Date: Thu, 30 Oct 2025 12:15:50 +0000 Subject: [PATCH] Fix start command in build instructions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Following the existing instructions I got this: ``` ❯ bun run build $ bun build --target=node --format=esm --bundle --sourcemap --outdir=build ./src/index.ts ./src/server.ts Bundled 329 modules in 34ms index.js 0.96 MB (entry point) server.js 1.78 MB (entry point) index.js.map 1.82 MB (source map) server.js.map 2.98 MB (source map) ❯ bun start error: Script not found "start" ``` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c461e10..03ad50c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ npx @adeze/raindrop-mcp 4. **Build and Run:** ```bash bun run build - bun start + bun run start:http ```