MCP TypeScript SDK
    Preparing search index...

    Variable SubscribeRequestSchemaConst

    SubscribeRequestSchema: ZodObject<
        {
            method: ZodLiteral<"resources/subscribe">;
            params: ZodObject<
                {
                    _meta: ZodOptional<
                        ZodObject<
                            {
                                "io.modelcontextprotocol/related-task": ZodOptional<
                                    ZodObject<{ taskId: ZodString }, $strip>,
                                >;
                                progressToken: ZodOptional<ZodUnion<readonly [ZodString, ZodNumber]>>;
                            },
                            $loose,
                        >,
                    >;
                    uri: ZodString;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    Sent from the client to request resources/updated notifications from the server whenever a particular resource changes.