function_call_validate
ActiveTool of IA-QA — 130+ QA & Dev Tools for AI Agents
Validate an LLM function call / tool_use output: check that function name is in allowed list, arguments match expected schema, no extra/missing args. For OpenAI function calling & MCP tool_use testing.
Parameters schema
{
"type": "object",
"required": [
"function_call",
"allowed_functions"
],
"properties": {
"function_call": {
"type": "object",
"description": "The function call object from LLM (e.g. { \"name\": \"get_weather\", \"arguments\": {\"city\":\"Paris\"} })",
"additionalProperties": true
},
"allowed_functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"optional_args": {
"type": "array",
"items": {
"type": "string"
}
},
"required_args": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"description": "List of allowed function definitions"
}
}
}No endpoints wrapped at confidence ≥ 0.70.
Parent server
IA-QA — 130+ QA & Dev Tools for AI Agents
https://github.com/jcjamet/ia-qa
1/7 registries