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

# Get Tool Params

> Return expected configuration parameters (env vars) for a tool.



## OpenAPI

````yaml /api-reference/openapi.json get /api/tools/{tool_name}/params
openapi: 3.1.0
info:
  title: apowerb API
  description: REST API of the apowerb agentic framework (open-source edition).
  version: 0.1.2
  license:
    name: MIT
    url: https://github.com/apowerb/apowerb/blob/main/LICENSE
servers:
  - url: https://api.example.com
    description: Your apowerb instance
  - url: http://localhost:8000
    description: Local stack
security: []
paths:
  /api/tools/{tool_name}/params:
    get:
      tags:
        - tools
      summary: Get Tool Params
      description: Return expected configuration parameters (env vars) for a tool.
      operationId: get_tool_params_api_tools__tool_name__params_get
      parameters:
        - name: tool_name
          in: path
          required: true
          schema:
            type: string
            title: Tool Name
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````

## Related topics

- [Get Tools Docs](/api-reference/tools/get-tools-docs.md)
- [Get Tool Configs](/api-reference/tools_config/get-tool-configs.md)
- [Create Tool Configs](/api-reference/tools_config/create-tool-configs.md)
- [Update Mcp Config](/api-reference/tools/update-mcp-config.md)
- [Update Agent](/api-reference/agents/update-agent.md)
