MCP TypeScript SDK (V2)
    Preparing search index...
    interface Props<Input = unknown, Output = Input> {
        types?: Types<Input, Output>;
        validate: (
            value: unknown,
            options?: StandardSchemaV1.Options,
        ) =>
            | StandardSchemaV1.Result<Output>
            | Promise<StandardSchemaV1.Result<Output>>;
        vendor: string;
        version: 1;
    }

    Type Parameters

    • Input = unknown
    • Output = Input

    Hierarchy (View Summary)

    Index

    Properties

    types?: Types<Input, Output>
    validate: (
        value: unknown,
        options?: StandardSchemaV1.Options,
    ) =>
        | StandardSchemaV1.Result<Output>
        | Promise<StandardSchemaV1.Result<Output>>
    vendor: string
    version: 1