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

# List tool providers

> Summary of each tool provider for the org (api/mcp/sidenet, static, global MCP): provider fields plus tool_count, auth_type, and the unique agent ids whose ACTIVE version uses the provider. Use GET /v1/tool-providers/:id for full tool details.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/tool-providers
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/tool-providers:
    get:
      tags:
        - Tool providers
      summary: List tool providers
      description: >-
        Summary of each tool provider for the org (api/mcp/sidenet, static,
        global MCP): provider fields plus tool_count, auth_type, and the unique
        agent ids whose ACTIVE version uses the provider. Use GET
        /v1/tool-providers/:id for full tool details.
      parameters: []
      responses:
        '200':
          description: One summary per provider, across every kind
          content:
            application/json:
              schema:
                type: object
                properties:
                  providers:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: >-
                            The `tool_providers.id` UUID for api/mcp/sidenet
                            providers; the static key (e.g.
                            `rich-ui-components`) or MCP server id for the
                            built-in kinds.
                        name:
                          type: string
                        type:
                          type: string
                          enum:
                            - api
                            - mcp
                            - sidenet
                            - static
                            - global_mcp
                        description:
                          type: string
                          nullable: true
                        auth_type:
                          type: string
                          nullable: true
                        base_url:
                          type: string
                          nullable: true
                          description: API providers only.
                        runtime_auth:
                          type: boolean
                          description: >-
                            The caller supplies credentials per request rather
                            than storing them.
                        mcp_transport:
                          type: string
                          nullable: true
                        has_vault_secret:
                          type: boolean
                          description: >-
                            A credential is stored for this provider. The secret
                            itself is never returned.
                        tool_count:
                          type: integer
                        agent_ids:
                          type: array
                          description: >-
                            Agents whose ACTIVE version uses this provider —
                            i.e. who breaks if you change it.
                          items:
                            type: string
                            format: uuid
              example:
                providers:
                  - id: 8d3b1a75-6c02-4e59-b84f-27a9d5e10c63
                    name: Acme CRM
                    type: api
                    description: Customer records
                    auth_type: bearer
                    base_url: https://api.acme.example
                    runtime_auth: false
                    has_vault_secret: true
                    tool_count: 12
                    agent_ids:
                      - 6f1c0f4e-2b7a-4a51-9a2f-0c9d1b3e5a10
        '403':
          description: Forbidden
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.

````