Stone.js API
    Preparing search index...
    • 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.

      Parameters

      • command: string = 'npx'

        The launcher command (defaults to npx).

      • args: string[] = ...

        The launcher arguments (defaults to stone mcp).

      Returns { args: string[]; command: string }

      The MCP server entry.