The .mcp.json server entry that launches this dev server.
It goes through npx because @stone-js/cli is a project dev dependency: a bare stone only
resolves when the CLI is also installed globally, so the entry an agent spawns would fail with
ENOENT on a normal project. npx resolves the project-local binary first, and still finds a
global install, so the generated file works either way.
The
.mcp.jsonserver entry that launches this dev server.It goes through
npxbecause@stone-js/cliis a project dev dependency: a barestoneonly resolves when the CLI is also installed globally, so the entry an agent spawns would fail with ENOENT on a normal project.npxresolves the project-local binary first, and still finds a global install, so the generated file works either way.