You're viewing a demo portfolio

Join the waitlist
PRSM

function_call_validate

Active

Tool of IA-QA — 130+ QA & Dev Tools for AI Agents

declared in 1.0.0

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"
    }
  }
}

What this tool wraps· 0 endpoints

min confidence0.700.50

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
View full server →