Stone.js API
    Preparing search index...

    Options for the MCP dev server, exposed on the blueprint under stone.mcpDev.

    stone mcp starts an MCP server (stdio) that hands the SDK the built-in framework-knowledge tools merged with yours, and logs every tool call to stderr so you watch the agent think.

    interface McpDevOptions {
        instructions?: string;
        name?: string;
        publishContext?: boolean;
        quiet?: boolean;
        report?: ReportToolsOptions;
        tools?: McpToolDef[];
        version?: string;
    }
    Index
    instructions?: string

    The instructions string advertised to the agent (the Continuum contract).

    name?: string

    The MCP server name advertised to the agent.

    publishContext?: boolean

    Whether a running application publishes its resolved configuration for the MCP server to read.

    Defaults to on outside production. It is what lets stone mcp describe the application actually running rather than the one the console command boots, so leave it on while developing.

    quiet?: boolean

    Silence the stderr activity log.

    Enable the GitHub bug/feature report tools by passing a token + repo.

    tools?: McpToolDef[]

    Your own tools, merged with the built-in framework-knowledge tools.

    version?: string

    The MCP server version.