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

# List available tools

> List all tools available to the agent.



## OpenAPI

````yaml /docs/reference/openapi.json get /tools
openapi: 3.1.0
info:
  description: >-
    The HTTP API of an agent served with `omniserve run --agent agent.py`: runs,
    approvals, budgets, background tasks, sessions and the evidence of every
    run.
  title: OmniServe
  version: latest
servers:
  - description: omniserve run, locally
    url: http://localhost:8000
security: []
paths:
  /tools:
    get:
      tags:
        - Tools
      summary: List available tools
      description: List all tools available to the agent.
      operationId: list_tools_tools_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolsResponse'
          description: Successful Response
components:
  schemas:
    ToolsResponse:
      description: Response model for tools listing endpoint.
      properties:
        tools:
          description: List of available tools
          items:
            $ref: '#/components/schemas/ToolInfo'
          title: Tools
          type: array
        total:
          description: Total number of tools
          title: Total
          type: integer
      required:
        - tools
        - total
      title: ToolsResponse
      type: object
    ToolInfo:
      description: Information about an available tool.
      properties:
        description:
          description: Tool description
          title: Description
          type: string
        inputSchema:
          additionalProperties: true
          description: Tool input schema
          title: Inputschema
          type: object
        name:
          description: Tool name
          title: Name
          type: string
        type:
          description: Tool type ('mcp' or 'local')
          title: Type
          type: string
      required:
        - name
        - description
        - type
      title: ToolInfo
      type: object

````