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

# Install tool

> Installs a security tool to a specific workspace with duplicate checking to prevent conflicts.



## OpenAPI

````yaml /api-reference/openapi.json post /api/tools/install
openapi: 3.0.0
info:
  title: Open Attack Surface Management
  description: Open-source platform for cybersecurity Attack Surface Management (ASM)
  version: '1.0'
  contact: {}
servers:
  - url: https://{baseUrl}/api/v1
    variables:
      baseUrl:
        default: localhost:3000
        description: API server hostname with port (e.g. localhost:3000, api.example.com)
security: []
tags: []
externalDocs:
  description: Authentication Docs
  url: auth/docs
paths:
  /api/tools/install:
    post:
      tags:
        - Tools
      summary: Install tool
      description: >-
        Installs a security tool to a specific workspace with duplicate checking
        to prevent conflicts.
      operationId: ToolsController_installTool
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InstallToolDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WorkspaceTool'
                allOf:
                  - $ref: '#/components/schemas/AppResponseSerialization'
components:
  schemas:
    InstallToolDto:
      type: object
      properties:
        workspaceId:
          type: string
          description: The ID of the workspace
        toolId:
          type: string
          description: The ID of the tool
      required:
        - workspaceId
        - toolId
    WorkspaceTool:
      type: object
      properties:
        id:
          type: string
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
        - id
        - createdAt
        - updatedAt

````