> ## Documentation Index
> Fetch the complete documentation index at: https://fastmcp-ts.docs.prefect.io/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/e4b6038f642b529f601463a576229747afebe9a4/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/e4b6038f642b529f601463a576229747afebe9a4/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/e4b6038f642b529f601463a576229747afebe9a4/src/server/context.ts#L61)

***

### type

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

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