@modelcontextprotocol/sdk
    Preparing search index...

    Variable PromptSchemaConst

    PromptSchema: ZodObject<
        extendShape<
            extendShape<
                { name: ZodString; title: ZodOptional<ZodString> },
                {
                    _meta: ZodOptional<
                        ZodObject<
                            {},
                            "passthrough",
                            ZodTypeAny,
                            objectOutputType<{}, ZodTypeAny, "passthrough">,
                            objectInputType<{}, ZodTypeAny, "passthrough">,
                        >,
                    >;
                    arguments: ZodOptional<
                        ZodArray<
                            ZodObject<
                                {
                                    description: ZodOptional<ZodString>;
                                    name: ZodString;
                                    required: ZodOptional<ZodBoolean>;
                                },
                                "strip",
                                ZodTypeAny,
                                { description?: string; name: string; required?: boolean },
                                { description?: string; name: string; required?: boolean },
                            >,
                            "many",
                        >,
                    >;
                    description: ZodOptional<ZodString>;
                },
            >,
            {
                icons: ZodOptional<
                    ZodArray<
                        ZodObject<
                            {
                                mimeType: ZodOptional<ZodString>;
                                sizes: ZodOptional<ZodArray<ZodString, "many">>;
                                src: ZodString;
                            },
                            "strip",
                            ZodTypeAny,
                            { mimeType?: string; sizes?: string[]; src: string },
                            { mimeType?: string; sizes?: string[]; src: string },
                        >,
                        "many",
                    >,
                >;
            },
        >,
        "strip",
        ZodTypeAny,
        {
            _meta?: objectOutputType<{}, ZodTypeAny, "passthrough">;
            arguments?: { description?: string; name: string; required?: boolean }[];
            description?: string;
            icons?: { mimeType?: string; sizes?: string[]; src: string }[];
            name: string;
            title?: string;
        },
        {
            _meta?: objectInputType<{}, ZodTypeAny, "passthrough">;
            arguments?: { description?: string; name: string; required?: boolean }[];
            description?: string;
            icons?: { mimeType?: string; sizes?: string[]; src: string }[];
            name: string;
            title?: string;
        },
    > = ...

    A prompt or prompt template that the server offers.