> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Test All Tools

> Test all agent tools to verify they are working correctly.

This endpoint runs non-destructive tests on all available tools
to ensure they can be executed properly by agents.

Note: This endpoint does not require authentication for testing purposes.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /testing/tools/test-all
openapi: 3.1.0
info:
  title: Backend - Multilingual Voice Agent System
  description: FastAPI backend for multilingual voice agents with tool use
  version: 1.0.0
servers: []
security: []
paths:
  /testing/tools/test-all:
    get:
      tags:
        - testing
      summary: Test All Tools
      description: >-
        Test all agent tools to verify they are working correctly.


        This endpoint runs non-destructive tests on all available tools

        to ensure they can be executed properly by agents.


        Note: This endpoint does not require authentication for testing
        purposes.
      operationId: test_all_tools_testing_tools_test_all_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````