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

# Get tool

> Get the full details of a single tool identified by its slug.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/tools/{toolSlug}
openapi: 3.0.0
info:
  title: Engini DeveloperAPI
  version: v1
  description: 'Merged public developer API spec: Identity + WorkflowApi.'
servers:
  - url: https://api.engini.io
security:
  - Bearer: []
  - ApiKey: []
paths:
  /v1/tools/{toolSlug}:
    get:
      tags:
        - Tools
      summary: Get tool
      description: Get the full details of a single tool identified by its slug.
      operationId: Tools_GetTool
      parameters:
        - name: toolSlug
          in: path
          required: true
          description: The slug identifying the tool to retrieve.
          schema:
            type: string
          x-position: 1
        - name: applicationSlug
          in: query
          description: >-
            Optional parent-application slug used to disambiguate when the same
            tool slug exists across applications.
          schema:
            type: string
            nullable: true
          x-position: 2
        - name: toolsetId
          in: query
          description: >-
            Optional toolset id; when supplied, a slug naming one of the
            caller's workflows in that toolset resolves to the workflow-tool
            detail.
          schema:
            type: string
            nullable: true
          x-position: 3
      responses:
        '200':
          description: The detailed representation of the tool.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolDetailDTO'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden — the caller lacks access to the resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: Too many requests — rate limit exceeded.
          headers:
            Retry-After:
              description: Number of seconds to wait before retrying.
              schema:
                type: integer
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error — an unexpected error occurred.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - Bearer: []
        - ApiKey: []
components:
  schemas:
    ToolDetailDTO:
      allOf:
        - $ref: '#/components/schemas/ToolDTO'
        - type: object
          description: >-
            Detail view returned by GET
            /api/DeveloperAPI/v1/applications/{slug}/...

            Extends ToolDTO with the embedded input/output schemas and the

            supports* flags AI agents inspect before composing a tool call.
          additionalProperties: false
          properties:
            inputSchema:
              description: JSON Schema describing the tool's input fields.
              nullable: true
            outputSchema:
              description: JSON Schema describing the tool's output shape.
              nullable: true
            supportsFilters:
              type: boolean
              description: Whether the tool supports filter conditions on execution.
            supportsSort:
              type: boolean
              description: Whether the tool supports sort ordering on execution.
            supportsTopOffset:
              type: boolean
              description: Whether the tool supports top/offset pagination on execution.
            maxFilters:
              type: integer
              description: Maximum number of filter conditions allowed per execution.
              format: int32
            maxSorts:
              type: integer
              description: Maximum number of sort clauses allowed per execution.
              format: int32
    ErrorResponse:
      type: object
      description: >-
        Unified error envelope for every non-200 response from
        /api/DeveloperAPI/v1/*.

        See applications-tools-spec.md §"Error envelope".
      additionalProperties: false
      required:
        - errorCode
        - message
        - requestId
        - timestamp
        - path
      properties:
        errorCode:
          type: string
          description: Machine-readable error code identifying the failure.
        message:
          type: string
          description: Human-readable error message.
        requestId:
          type: string
          description: Identifier of the request, for support/correlation.
        timestamp:
          type: string
          description: Timestamp when the error occurred (ISO 8601).
        path:
          type: string
          description: Request path that produced the error.
        details:
          type: array
          description: Per-field validation details, when applicable.
          nullable: true
          items:
            $ref: '#/components/schemas/ErrorDetail'
    ToolDTO:
      type: object
      description: |-
        Public Developer API v1 representation of a tool (Activity).
        Returned by GET /api/DeveloperAPI/v1/tools.
      additionalProperties: false
      required:
        - toolSlug
        - category
        - applicationSlug
        - isDeprecated
      properties:
        toolSlug:
          type: string
          description: Public identifier, sourced from Activity.McpToolName.
        toolName:
          type: string
          description: Human-readable display name of the tool.
          nullable: true
        description:
          type: string
          description: Description of what the tool does.
          nullable: true
        category:
          type: string
          description: Category the tool belongs to.
        applicationSlug:
          type: string
          description: Slug of the application this tool belongs to.
        applicationName:
          type: string
          description: Display name of the application this tool belongs to.
          nullable: true
        version:
          type: string
          description: Version of the tool.
          nullable: true
        isDeprecated:
          type: boolean
          description: Whether the tool is deprecated.
    ErrorDetail:
      type: object
      description: A single field-level error detail within an ErrorResponse.
      additionalProperties: false
      required:
        - field
        - issue
      properties:
        field:
          type: string
          description: Name of the field the issue relates to.
        issue:
          type: string
          description: Description of the issue with the field.
  securitySchemes:
    Bearer:
      type: http
      description: Enter your JWT token
      scheme: bearer
      bearerFormat: JWT
    ApiKey:
      type: apiKey
      description: >-
        Opaque Developer API key (prefix `eng_`). Authenticates as the key's
        owner and resolves the account automatically — no Bearer or companytoken
        needed.
      name: x-api-key
      in: header

````