NestJS MCP - v1.0.1
    Preparing search index...

    Discovered MCP prompt with handler

    interface DiscoveredMCPPrompt {
        name: string;
        description?: string;
        arguments?: { name: string; description?: string; required?: boolean }[];
        handler: (args: JSONObject) => JSONValue | Promise<JSONValue>;
        schema?: ZodObject<
            ZodRawShape,
            UnknownKeysParam,
            ZodTypeAny,
            { [key: string]: any },
            { [key: string]: any },
        >;
        version?: string;
        deprecated?: boolean;
        deprecationMessage?: string;
        guards?: unknown[];
        interceptors?: unknown[];
        instance?: unknown;
        methodName?: string;
    }
    Index

    Properties

    name: string
    description?: string
    arguments?: { name: string; description?: string; required?: boolean }[]
    handler: (args: JSONObject) => JSONValue | Promise<JSONValue>
    schema?: ZodObject<
        ZodRawShape,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >

    Optional Zod schema for runtime validation of prompt arguments

    version?: string

    Version of the prompt (e.g., '1.0.0', 'v2', '2023-11-01')

    deprecated?: boolean

    Deprecation status - true if deprecated

    deprecationMessage?: string

    Deprecation message with migration guidance

    guards?: unknown[]

    Guards to apply to this prompt

    interceptors?: unknown[]

    Interceptors to apply to this prompt

    instance?: unknown

    Handler instance (for context)

    methodName?: string

    Handler method name (for context)