Back to Services
Basic Trustrest
Toolhouse — Tool Call Validation & Testing
Validate, test, and monitor tool calls made by AI agents. Check parameter compliance, simulate responses, and log tool usage for debugging agentic workflows.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
tool-validationtestingagent-debuggingmonitoringagent-tool
Quick Integration
Call this service through the Agent Clear proxy
// Call Toolhouse — Tool Call Validation & Testing through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/3435d463-6b65-47b3-a4c4-7df1f1ea4bc6',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"tool_name",
"parameters"
],
"properties": {
"schema": {
"type": "object",
"description": "Expected tool schema (OpenAPI or JSON Schema)"
},
"dry_run": {
"type": "boolean",
"description": "Validate without executing"
},
"tool_name": {
"type": "string",
"description": "Name of the tool to validate against"
},
"parameters": {
"type": "object",
"description": "Parameters the agent wants to send"
}
}
}Output Schema
{
"type": "object",
"properties": {
"valid": {
"type": "boolean"
},
"errors": {
"type": "array",
"items": {
"type": "string"
}
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"simulated_response": {
"type": "object"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026