> ## Documentation Index
> Fetch the complete documentation index at: https://mcp-use.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://mcp-use.com/docs/feedback

```json
{
  "path": "/typescript/agent/structured-output",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Structured Output

> Type-safe responses with Zod schema validation

Structured output enables agents to return type-safe, validated data instead of plain text. By defining a Zod schema, you get automatic validation, type inference, and retry logic for formatting output.

## How Structured Output Works

When you provide a Zod schema to the agent:

1. **Schema awareness**: When using `streamEvents()`, the agent receives schema information in the query to understand what data structure to return
2. **Automatic validation**: Responses are validated against your schema using Zod
3. **Type safety**: Full TypeScript type inference from your schema
4. **Formatting retries**: If the output doesn't match the schema format, the system retries up to 3 times to format it correctly
5. **Guaranteed structure**: You always get data matching your schema or an error

## Benefits

### Type Safety

Get full TypeScript types automatically inferred from your schema:

```typescript theme={null}
const schema = z.object({
  name: z.string(),
  age: z.number()
})

const result = await agent.run({
  prompt: 'Get user information',
  schema
})
// result.name is string
// result.age is number
```

### Formatting Retry

If the agent's response doesn't match the schema format, the system automatically retries up to 3 times to format the output correctly. This handles cases where the LLM output needs to be restructured to match your schema.

### Validation

Responses are validated at runtime, ensuring your code always receives correctly structured data.

## Basic Example

```typescript theme={null}
import { z } from 'zod'
import { ChatOpenAI } from '@langchain/openai'
import { MCPAgent, MCPClient } from 'mcp-use'

// Define the schema using Zod
const WeatherInfo = z.object({
    city: z.string().describe('City name'),
    temperature: z.number().describe('Temperature in Celsius'),
    condition: z.string().describe('Weather condition'),
    humidity: z.number().describe('Humidity percentage')
})

// TypeScript type inferred from schema
type WeatherInfo = z.infer<typeof WeatherInfo>

async function main() {
    // Setup client and agent
    const client = new MCPClient({ mcpServers: {...} })
    const llm = new ChatOpenAI({ model: 'gpt-4o' })
    const agent = new MCPAgent({ llm, client })

    // Get structured output
    const weather = await agent.run({
        prompt: 'Get the current weather in San Francisco',
        schema: WeatherInfo
    })

    console.log(`Temperature in ${weather.city}: ${weather.temperature}°C`)
    console.log(`Condition: ${weather.condition}`)
    console.log(`Humidity: ${weather.humidity}%`)

    await client.closeAllSessions()
}

main().catch(console.error)
```

<Note>
  **Schema-Aware Prompts**: When using `streamEvents()`, the query is automatically enhanced with schema information before execution, helping the agent understand what data structure is needed. When using `run()` or `stream()`, structured output conversion happens after execution completes.
</Note>

## Streaming with Structured Output

When using `streamEvents()` with structured output, you'll receive special events during the conversion process:

* `on_structured_output_progress`: Emitted every 2 seconds while converting to structured format
* `on_structured_output`: Emitted when structured output is successfully generated
* `on_structured_output_error`: Emitted if structured output conversion fails

## Key Benefits

* **Type Safety**: Get Zod (TypeScript) models with full IDE support and validation
* **Schema-Aware Prompts**: When using `streamEvents()`, the agent receives enhanced prompts that include schema information, helping it understand what data structure is needed
* **Formatting Retry**: Up to 3 automatic retries if the output format doesn't match the schema
* **Field Validation**: Built-in validation for required fields, data types, and constraints using Zod

The agent is instructed to gather all required information during execution (when using `streamEvents()`), and the output is validated and formatted to match your schema. If validation fails after retries, an error is thrown.
