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

# Create Tool Configs

> Endpoint to create a new tool config.



## OpenAPI

````yaml /api-reference/openapi.json post /api/tools_config
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_config:
    post:
      tags:
        - tools_config
      summary: Create Tool Configs
      description: Endpoint to create a new tool config.
      operationId: create_tool_configs_api_tools_config_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ToolConfigCreateSchema'
        required: true
      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:
    ToolConfigCreateSchema:
      properties:
        tool_config_name:
          type: string
          title: Tool Config Name
        tool_name:
          type: string
          title: Tool Name
        tool_config_params:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Tool Config Params
        tool_category:
          type: string
          title: Tool Category
        organization_id:
          type: string
          title: Organization Id
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
          default: active
        tool_config_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Tool Config Type
          default: active
        project_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Project Id
          default: thaink2
        owner_id:
          type: string
          title: Owner Id
        tags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Tags
      type: object
      required:
        - tool_config_name
        - tool_name
        - tool_category
        - organization_id
        - owner_id
      title: ToolConfigCreateSchema
      description: Schema for creating a new tool_config.
    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

- [Delete Tool Configs](/api-reference/tools_config/delete-tool-configs.md)
- [Get Tool Configs](/api-reference/tools_config/get-tool-configs.md)
- [List Tool Configs](/api-reference/tools_config/list-tool-configs.md)
- [Update Tool Configs](/api-reference/tools_config/update-tool-configs.md)
- [List database tool configurations](/api-reference/bi-datasets/list-database-tool-configurations.md)
