Whatever message this page gives is out now! Go check it out!
{
"jsonrpc": "2.0",
"id": 42,
"method": "tools/call",
"params": {
"name": "getWeather",
"arguments": {
"city": "London",
"units": "metric"
}
}
}
{
"jsonrpc": "2.0",
"id": 42,
"result": {
"content": [
{
"type": "text",
"text": "Current weather in London: 16°C, cloudy"
}
],
"isError": false
}
}
inputSchema. Users and agents rely on this schema to construct valid calls.
"inputSchema": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City name or postal code"
},
"units": {
"type": "string",
"description": "Temperature units (metric or imperial)",
"enum": ["metric", "imperial"]
}
},
"required": ["city"]
}
isError: true and include an explanation such as: