List Mock Tools
List all tools for this agent
Authorizations
API Key Authentication. It should be included in the header of each request.
Path Parameters
^\d+$Response
Name of the tool - must be less than 64 characters and contain only alphanumerics, underscores, and hyphens
255Description of the mock tool. Example: "This tool retrieves user data from the database based on user ID"
Information of the tool - must be a list of input-output mappings. Example:
[
{
"input": {"user_id": 1},
"output": {"name": "John Doe", "age": 30, "email": "john@example.com"}
},
{
"input": {"user_id": 2},
"output": {"name": "Jane Smith", "age": 25, "email": "jane@example.com"}
}
]Parameter names skipped during mock matching because they are free-text (e.g. ["notes", "reason"])
Per-tool webhook URL. None if this Tool is served through an MCP endpoint.
How this tool is accessed at runtime. {'type': 'direct'} for standalone tools; {'type': 'mcp', 'mock_index': N, 'url': '.../mcp/N/'} for MCP sub-tools.