@modelcontextprotocol/sdk
    Preparing search index...

    Variable ResourceLinkSchemaConst

    ResourceLinkSchema: ZodObject<
        extendShape<
            extendShape<
                extendShape<
                    { name: ZodString; title: ZodOptional<ZodString> },
                    {
                        _meta: ZodOptional<
                            ZodObject<
                                {},
                                "passthrough",
                                ZodTypeAny,
                                objectOutputType<{}, ZodTypeAny, "passthrough">,
                                objectInputType<{}, ZodTypeAny, "passthrough">,
                            >,
                        >;
                        description: ZodOptional<ZodString>;
                        mimeType: ZodOptional<ZodString>;
                        uri: 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",
                        >,
                    >;
                },
            >,
            { type: ZodLiteral<"resource_link"> },
        >,
        "strip",
        ZodTypeAny,
        {
            _meta?: objectOutputType<{}, ZodTypeAny, "passthrough">;
            description?: string;
            icons?: { mimeType?: string; sizes?: string[]; src: string }[];
            mimeType?: string;
            name: string;
            title?: string;
            type: "resource_link";
            uri: string;
        },
        {
            _meta?: objectInputType<{}, ZodTypeAny, "passthrough">;
            description?: string;
            icons?: { mimeType?: string; sizes?: string[]; src: string }[];
            mimeType?: string;
            name: string;
            title?: string;
            type: "resource_link";
            uri: string;
        },
    > = ...

    A resource that the server is capable of reading, included in a prompt or tool call result.

    Note: resource links returned by tools are not guaranteed to appear in the results of resources/list requests.