Skip to content

@maxhealth.tech/prefab / mcp / McpMultiEnumSchema

Type Alias: McpMultiEnumSchema

ts
type McpMultiEnumSchema = object;

Defined in: mcp/types.ts:214

Multiple selection: an array of values drawn from a fixed set.

Properties

type

ts
type: "array";

Defined in: mcp/types.ts:215


title?

ts
optional title?: string;

Defined in: mcp/types.ts:216


description?

ts
optional description?: string;

Defined in: mcp/types.ts:217


minItems?

ts
optional minItems?: number;

Defined in: mcp/types.ts:218


maxItems?

ts
optional maxItems?: number;

Defined in: mcp/types.ts:219


items

ts
items: object;

Defined in: mcp/types.ts:220

type

ts
type: "string";

enum

ts
enum: string[];

default?

ts
optional default?: string[];

Defined in: mcp/types.ts:221

Released under the MIT License.