Installation

Install the local server, build the extension, and open your first enabled route.

Field guide · 01

Current availability

The Waypoint CLI is published through npm and as a checksummed GitHub Release. Both channels install the same waypoint command and local MCP server.

The browser extension is not yet published to a browser store. Build it from the repository and load the generated Chromium extension as unpacked.

Install from a GitHub Release

Run the public installer to download and verify the latest Waypoint CLI release.

curl -fsSL https://waypoint.logbookfordevs.com/install.sh | bash
waypoint start

Install through npm

Install the published package globally, or use npx for a temporary first look. Start runs the local server in the background by default.

npm install --global @logbookfordevs/waypoint
waypoint start

Build and load the extension

Clone the repository, install the workspace, and build the browser extension with pnpm.

Open chrome://extensions, enable Developer mode, choose Load unpacked, and select packages/extension/.output/chrome-mv3.

git clone https://github.com/logbookfordevs/logbook-waypoint.git
cd logbook-waypoint
pnpm install
pnpm build