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

# List Tools

> List available red team tools and their supported attack categories.



## OpenAPI

````yaml /openapi/api.json get /v1/tools
openapi: 3.1.0
info:
  title: Vijil Console API (Combined)
  description: Combined OpenAPI specification for all vijil-console microservices.
  version: 0.1.0
servers: []
security: []
tags:
  - name: Teams
    description: Authentication, users, and team management
  - name: Agent Environment
    description: Agent, persona, policy, and harness management
  - name: Diamond
    description: Evaluation management and report retrieval
  - name: Dome
    description: Protection, guardrails, and telemetry
  - name: Red Team
    description: Red team campaigns
paths:
  /v1/tools:
    get:
      tags:
        - Red Team
        - redteam
      summary: List Tools
      description: List available red team tools and their supported attack categories.
      operationId: list_tools_v1_tools_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ToolInfo'
                type: array
                title: Response List Tools V1 Tools Get
components:
  schemas:
    ToolInfo:
      properties:
        tool:
          type: string
          title: Tool
        categories:
          items:
            type: string
          type: array
          title: Categories
      type: object
      required:
        - tool
        - categories
      title: ToolInfo
      description: Summary of a red team tool's capabilities.

````