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

    Discovered MCP resource with handler

    interface DiscoveredMCPResource {
        uri?: string;
        uriTemplate?: string;
        name: string;
        description?: string;
        mimeType?: string;
        isTemplate?: boolean;
        handler: (
            variables?: Record<string, string>,
        ) => 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

    uri?: string
    uriTemplate?: string
    name: string
    description?: string
    mimeType?: string
    isTemplate?: boolean
    handler: (variables?: Record<string, string>) => JSONValue | Promise<JSONValue>
    schema?: ZodObject<
        ZodRawShape,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >

    Optional Zod schema for runtime validation of URI template variables

    version?: string

    Version of the resource (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 resource

    interceptors?: unknown[]

    Interceptors to apply to this resource

    instance?: unknown

    Handler instance (for context)

    methodName?: string

    Handler method name (for context)