@modelcontextprotocol/sdk
    Preparing search index...

    Variable ToolAnnotationsSchemaConst

    ToolAnnotationsSchema: ZodObject<
        {
            destructiveHint: ZodOptional<ZodBoolean>;
            idempotentHint: ZodOptional<ZodBoolean>;
            openWorldHint: ZodOptional<ZodBoolean>;
            readOnlyHint: ZodOptional<ZodBoolean>;
            title: ZodOptional<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            destructiveHint?: boolean;
            idempotentHint?: boolean;
            openWorldHint?: boolean;
            readOnlyHint?: boolean;
            title?: string;
        },
        {
            destructiveHint?: boolean;
            idempotentHint?: boolean;
            openWorldHint?: boolean;
            readOnlyHint?: boolean;
            title?: string;
        },
    > = ...

    Additional properties describing a Tool to clients.

    NOTE: all properties in ToolAnnotations are hints. They are not guaranteed to provide a faithful description of tool behavior (including descriptive properties like title).

    Clients should never make tool use decisions based on ToolAnnotations received from untrusted servers.