mcpuniverse / tests /data /task /weather_task.json
haochengsama's picture
Add files using upload-large-folder tool
222d3d2 verified
Raw
History Blame Contribute Delete
560 Bytes
{
"category": "general",
"question": "What's the weather in San Francisco now?",
"mcp_servers": [
{
"name": "weather"
}
],
"output_format": {
"city": "<CITY>",
"weather": "<Weather forecast results>"
},
"evaluators": [
{
"func": "json -> get(city)",
"op": "=",
"value": "San Francisco"
}
],
"cleanups": [
{
"server": "weather",
"tool": "get_forecast",
"cleanup_func": "get_forecast",
"cleanup_args": {"latitude": "$latitude", "longitude": "$longitude"}
}
]
}