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

# Delete tool

> Deletes a tool. Admin only. Platform tools cannot be deleted. Tools referenced by skills cannot be deleted.



## OpenAPI

````yaml /openapi.yaml delete /tools/{id}
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /tools/{id}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    delete:
      summary: Delete tool
      description: >-
        Deletes a tool. Admin only. Platform tools cannot be deleted. Tools
        referenced by skills cannot be deleted.
      responses:
        '200':
          description: Tool deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: boolean
        '401':
          description: Not authenticated
        '403':
          description: Requires admin role or platform tool is undeletable
        '404':
          description: Tool not found
        '409':
          description: Tool is referenced by a skill
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````