Member Junction
    Preparing search index...

    Tool annotations from MCP spec

    interface MCPToolAnnotations {
        destructiveHint?: boolean;
        idempotentHint?: boolean;
        openWorldHint?: boolean;
        readOnlyHint?: boolean;
        title?: string;
    }
    Index

    Properties

    destructiveHint?: boolean

    Tool can delete/modify data

    idempotentHint?: boolean

    Safe to repeat the operation

    openWorldHint?: boolean

    Interacts with external entities

    readOnlyHint?: boolean

    Tool doesn't modify state

    title?: string

    Display name for the tool