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

# Get agent tool install statuses

> Returns per-tool installation status for the agent. Scoped to ownership.



## OpenAPI

````yaml /openapi.yaml get /agents/{id}/tool-installs
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:
  /agents/{id}/tool-installs:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    get:
      summary: Get agent tool install statuses
      description: Returns per-tool installation status for the agent. Scoped to ownership.
      responses:
        '200':
          description: Tool install status rows
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AgentToolInstallStatus'
        '401':
          description: Not authenticated
        '403':
          description: Requires user role
        '404':
          description: Agent not found
      security:
        - bearerAuth: []
components:
  schemas:
    AgentToolInstallStatus:
      type: object
      properties:
        tool_id:
          type: string
          format: uuid
        tool_name:
          type: string
        tool_description:
          type: string
        status:
          type: string
          enum:
            - pending
            - installing
            - installed
            - failed
        install_message:
          type: string
        installed_at:
          type: string
          format: date-time
          nullable: true
        updated_at:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````