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

    Metadata for MCP resource

    interface MCPResourceMetadata {
        uri: string;
        name: string;
        description?: string;
        mimeType?: string;
        schema?: ZodObject<
            ZodRawShape,
            UnknownKeysParam,
            ZodTypeAny,
            { [key: string]: any },
            { [key: string]: any },
        >;
        version?: string;
        deprecation?: DeprecationInfo;
    }
    Index

    Properties

    uri: string
    name: string
    description?: string
    mimeType?: string
    schema?: ZodObject<
        ZodRawShape,
        UnknownKeysParam,
        ZodTypeAny,
        { [key: string]: any },
        { [key: string]: any },
    >

    Zod schema for validating resource read parameters Use this for static resources that may accept query parameters

    version?: string

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

    deprecation?: DeprecationInfo

    Deprecation information