Interface McpToolAnnotationsExperimental

MCP behavior annotations advertised per tool. Open — a server may carry vendor-namespaced blocks here (see ./tool-catalog.ts, which reads honua-server's Studio family/view classification off either annotations or the descriptor's _meta).

interface McpToolAnnotations {
    destructiveHint?: boolean;
    idempotentHint?: boolean;
    readOnlyHint?: boolean;
    title?: string;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

destructiveHint?: boolean
idempotentHint?: boolean
readOnlyHint?: boolean
title?: string