Skip to main content
Defined in: server/context.ts:54 Flat JSON Schema object describing fields to collect from the user. Only primitive property types (string, number, boolean) are allowed per the MCP spec.

Properties

properties

properties: Record<string, {
  description?: string;
  title?: string;
  type: "string" | "number" | "boolean";
}>;
Defined in: server/context.ts:56

required?

optional required?: string[];
Defined in: server/context.ts:60

type

type: "object";
Defined in: server/context.ts:55