> ## Documentation Index
> Fetch the complete documentation index at: https://colin-feat-client-cache-mode.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ElicitationSchema

Defined in: [server/context.ts:55](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L55)

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

```ts theme={null}
properties: Record<string, {
  description?: string;
  title?: string;
  type: "string" | "number" | "boolean";
}>;
```

Defined in: [server/context.ts:57](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L57)

***

### required?

```ts theme={null}
optional required?: string[];
```

Defined in: [server/context.ts:61](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L61)

***

### type

```ts theme={null}
type: "object";
```

Defined in: [server/context.ts:56](https://github.com/PrefectHQ/fastmcp-ts/blob/8976c37f79efa6b87809b884f29a1f235a8c4ad1/src/server/context.ts#L56)
