-
Notifications
You must be signed in to change notification settings - Fork 106
Open
Description
Hi,
With the new release, tools' JSON schema are not correctly published.
With Release v0.2.13 :
{
"tools": [
{
"name": "weather",
"description": "Get weather information for a specific location",
"inputSchema": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "Location to get weather for (e.g., 'Paris', 'New York')"
}
},
"required": [
"location"
]
}
}
]
}With Release v0.2.14 :
{
"tools": [
{
"name": "weather",
"inputSchema": {
"type": "object"
},
"annotations": {
"location": {
"type": {
"_def": {
"checks": [],
"typeName": "ZodString",
"coerce": false
},
"~standard": {
"version": 1,
"vendor": "zod"
}
},
"description": "Location to get weather for (e.g., 'Paris', 'New York')"
}
}
}
]
}Metadata
Metadata
Assignees
Labels
No labels