Interface McpToolDescriptorExperimental

interface McpToolDescriptor {
    _meta?: Record<string, unknown>;
    annotations?: McpToolAnnotations;
    description?: string;
    inputSchema: Record<string, unknown>;
    name: string;
    outputSchema?: Record<string, unknown>;
    title?: string;
}

Properties

_meta?: Record<string, unknown>

MCP's forward-compatible extension slot. honua-server#3428 will publish the Studio tool family/view classification here under the "honua.studio" key; ./tool-catalog.ts documents the exact shape and is the only reader.

annotations?: McpToolAnnotations
description?: string
inputSchema: Record<string, unknown>
name: string
outputSchema?: Record<string, unknown>
title?: string