> ## 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.

# Check Tool Integration

> Comprehensive integration check for all tools with LiveKit Cloud and External Agent Factory.

This endpoint verifies:
1. Tool configuration is properly structured for external agent factory
2. LiveKit-dependent tools (DTMF, Handoff) have correct parameters
3. API keys are properly configured
4. JSON payload format matches external agent factory expectations

Returns detailed report on integration readiness.



## OpenAPI

````yaml https://api.mrassistant.ai/openapi.json get /testing/tools/integration-check
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/integration-check:
    get:
      tags:
        - testing
      summary: Check Tool Integration
      description: >-
        Comprehensive integration check for all tools with LiveKit Cloud and
        External Agent Factory.


        This endpoint verifies:

        1. Tool configuration is properly structured for external agent factory

        2. LiveKit-dependent tools (DTMF, Handoff) have correct parameters

        3. API keys are properly configured

        4. JSON payload format matches external agent factory expectations


        Returns detailed report on integration readiness.
      operationId: check_tool_integration_testing_tools_integration_check_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````