Skip to content
5 changes: 4 additions & 1 deletion docs/docs/2024-11-05/learn/server-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ Consider a personalized AI travel planner application, with three connected serv

The AI first reads all selected resources to gather context - identifying available dates from the calendar, learning preferred airlines and hotel types from travel preferences, and discovering previously enjoyed locations from past trips.

Using this context, the AI then executes a series of Tools:
Using this context, the AI then executes the prompt provided by the AI application. In our example, the AI application exposes the weather tools from the connected MCP weather server to the model. Because weather can affect travel plans, the AI chooses to call `checkWeather()` when interpreting the prompt.

As a result the AI executes a series of tools:

- `searchFlights()` - Queries airlines for NYC to Barcelona flights
- `checkWeather()` - Retrieves climate forecasts for travel dates

Expand Down
5 changes: 4 additions & 1 deletion docs/docs/2025-03-26/learn/server-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ Consider a personalized AI travel planner application, with three connected serv

The AI first reads all selected resources to gather context - identifying available dates from the calendar, learning preferred airlines and hotel types from travel preferences, and discovering previously enjoyed locations from past trips.

Using this context, the AI then executes a series of Tools:
Using this context, the AI then executes the prompt provided by the AI application. In our example, the AI application exposes the weather tools from the connected MCP weather server to the model. Because weather can affect travel plans, the AI chooses to call `checkWeather()` when interpreting the prompt.

As a result the AI executes a series of tools:

- `searchFlights()` - Queries airlines for NYC to Barcelona flights
- `checkWeather()` - Retrieves climate forecasts for travel dates

Expand Down
5 changes: 4 additions & 1 deletion docs/docs/2025-06-18/learn/server-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ Consider a personalized AI travel planner application, with three connected serv

The AI first reads all selected resources to gather context - identifying available dates from the calendar, learning preferred airlines and hotel types from travel preferences, and discovering previously enjoyed locations from past trips.

Using this context, the AI then executes a series of Tools:
Using this context, the AI then executes the prompt provided by the AI application. In our example, the AI application exposes the weather tools from the connected MCP weather server to the model. Because weather can affect travel plans, the AI chooses to call `checkWeather()` when interpreting the prompt.

As a result the AI executes a series of tools:

- `searchFlights()` - Queries airlines for NYC to Barcelona flights
- `checkWeather()` - Retrieves climate forecasts for travel dates

Expand Down
5 changes: 4 additions & 1 deletion docs/docs/2025-11-25/learn/server-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ Consider a personalized AI travel planner application, with three connected serv

The AI first reads all selected resources to gather context - identifying available dates from the calendar, learning preferred airlines and hotel types from travel preferences, and discovering previously enjoyed locations from past trips.

Using this context, the AI then executes a series of Tools:
Using this context, the AI then executes the prompt provided by the AI application. In our example, the AI application exposes the weather tools from the connected MCP weather server to the model. Because weather can affect travel plans, the AI chooses to call `checkWeather()` when interpreting the prompt.

As a result the AI executes a series of tools:

- `searchFlights()` - Queries airlines for NYC to Barcelona flights
- `checkWeather()` - Retrieves climate forecasts for travel dates

Expand Down
5 changes: 4 additions & 1 deletion docs/docs/draft/learn/server-concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,10 @@ Consider a personalized AI travel planner application, with three connected serv

The AI first reads all selected resources to gather context - identifying available dates from the calendar, learning preferred airlines and hotel types from travel preferences, and discovering previously enjoyed locations from past trips.

Using this context, the AI then executes a series of Tools:
Using this context, the AI then executes the prompt provided by the AI application. In our example, the AI application exposes the weather tools from the connected MCP weather server to the model. Because weather can affect travel plans, the AI chooses to call `checkWeather()` when interpreting the prompt.

As a result the AI executes a series of tools:

- `searchFlights()` - Queries airlines for NYC to Barcelona flights
- `checkWeather()` - Retrieves climate forecasts for travel dates

Expand Down
4 changes: 2 additions & 2 deletions schema/2025-06-18/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions schema/2025-06-18/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,13 @@ export interface NumberSchema {
type: "number" | "integer";
title?: string;
description?: string;
/**
* @TJS-type number
*/
minimum?: number;
/**
* @TJS-type number
*/
maximum?: number;
}

Expand Down
6 changes: 3 additions & 3 deletions schema/2025-11-25/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions schema/2025-11-25/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2254,8 +2254,17 @@ export interface NumberSchema {
type: "number" | "integer";
title?: string;
description?: string;
/**
* @TJS-type number
*/
minimum?: number;
/**
* @TJS-type number
*/
maximum?: number;
/**
* @TJS-type number
*/
default?: number;
}

Expand Down
Loading