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

# List Platform Mcp Catalog

> List platform MCP catalog rows with workspace connection state.



## OpenAPI

````yaml https://platform.tracecat.com/api/openapi.json get /workspaces/{workspace_id}/mcp-integrations/catalog
openapi: 3.1.0
info:
  title: Tracecat API
  summary: Tracecat API
  description: The open source AI automation platform for security teams and agents.
  termsOfService: >-
    https://docs.google.com/document/d/e/2PACX-1vQvDe3SoVAPoQc51MgfGCP71IqFYX_rMVEde8zC4qmBCec5f8PLKQRdxa6tsUABT8gWAR9J-EVs2CrQ/pub
  contact:
    name: Tracecat Founders
    email: founders@tracecat.com
  license:
    name: AGPL-3.0
    url: https://www.gnu.org/licenses/agpl-3.0.html
  version: '1'
servers:
  - url: /api
security: []
tags:
  - name: public
    description: Public facing endpoints
  - name: workflows
    description: Workflow management
  - name: actions
    description: Action management
  - name: triggers
    description: Workflow triggers
  - name: secrets
    description: Secret management
  - name: variables
    description: Workspace variable management
paths:
  /workspaces/{workspace_id}/mcp-integrations/catalog:
    get:
      tags:
        - mcp-integrations
      summary: List Platform Mcp Catalog
      description: List platform MCP catalog rows with workspace connection state.
      operationId: mcp-integrations-list_platform_mcp_catalog
      parameters:
        - name: workspace_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Workspace Id
        - name: q
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Search name, slug, description
            title: Q
          description: Search name, slug, description
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category
            title: Category
          description: Filter by category
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - enum:
                  - available
                  - coming_soon
                  - deprecated
                  - hidden
                type: string
              - type: 'null'
            description: Filter by catalog status
            title: Status
          description: Filter by catalog status
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Cursor for pagination
            title: Cursor
          description: Cursor for pagination
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformMCPCatalogListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyCookie: []
        - ServiceAccountApiKeyBearer: []
components:
  schemas:
    PlatformMCPCatalogListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/PlatformMCPCatalogRead'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      required:
        - items
      title: PlatformMCPCatalogListResponse
      description: Cursor-paginated platform MCP catalog response.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlatformMCPCatalogRead:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        slug:
          type: string
          title: Slug
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        category:
          type: string
          title: Category
        status:
          type: string
          enum:
            - available
            - coming_soon
            - deprecated
            - hidden
          title: Status
        icon_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon Url
        docs_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Docs Url
        provider_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Provider Id
        connection_spec:
          anyOf:
            - $ref: '#/components/schemas/MCPConnectionSpec'
            - type: 'null'
        connection_options:
          items:
            $ref: '#/components/schemas/MCPConnectionOption'
          type: array
          title: Connection Options
        locked:
          type: boolean
          title: Locked
          description: Whether this platform MCP catalog row is locked by entitlement.
        state:
          type: string
          enum:
            - not_configured
            - configured
            - connected
            - error
          title: State
        mcp_integration_id:
          anyOf:
            - type: string
              format: uuid4
            - type: 'null'
          title: Mcp Integration Id
        mcp_server_type:
          anyOf:
            - $ref: '#/components/schemas/MCPServerType'
            - type: 'null'
        mcp_auth_type:
          anyOf:
            - $ref: '#/components/schemas/MCPAuthType'
            - type: 'null'
        tools:
          anyOf:
            - items:
                $ref: '#/components/schemas/MCPToolSummary'
              type: array
            - type: 'null'
          title: Tools
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        last_refreshed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Refreshed At
      type: object
      required:
        - id
        - slug
        - name
        - description
        - category
        - status
        - icon_url
        - docs_url
        - provider_id
        - connection_spec
        - locked
        - state
        - mcp_integration_id
        - created_at
        - updated_at
        - last_refreshed_at
      title: PlatformMCPCatalogRead
      description: Catalog row joined with workspace-specific MCP state.
    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
    MCPConnectionSpec:
      oneOf:
        - $ref: '#/components/schemas/MCPHTTPOAuth2ConnectionSpec'
        - $ref: '#/components/schemas/MCPHTTPCustomConnectionSpec'
        - $ref: '#/components/schemas/MCPHTTPNoneConnectionSpec'
        - $ref: '#/components/schemas/MCPStdioCustomConnectionSpec'
        - $ref: '#/components/schemas/MCPStdioNoneConnectionSpec'
      discriminator:
        propertyName: kind
        mapping:
          http_custom:
            $ref: '#/components/schemas/MCPHTTPCustomConnectionSpec'
          http_none:
            $ref: '#/components/schemas/MCPHTTPNoneConnectionSpec'
          http_oauth2:
            $ref: '#/components/schemas/MCPHTTPOAuth2ConnectionSpec'
          stdio_custom:
            $ref: '#/components/schemas/MCPStdioCustomConnectionSpec'
          stdio_none:
            $ref: '#/components/schemas/MCPStdioNoneConnectionSpec'
    MCPConnectionOption:
      properties:
        id:
          type: string
          maxLength: 80
          minLength: 1
          title: Id
        label:
          type: string
          maxLength: 120
          minLength: 1
          title: Label
        description:
          anyOf:
            - type: string
              maxLength: 512
            - type: 'null'
          title: Description
        docs_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Docs Url
        connection_spec:
          $ref: '#/components/schemas/MCPConnectionSpec'
      type: object
      required:
        - id
        - label
        - connection_spec
      title: MCPConnectionOption
      description: A connectable transport/auth option for one catalog provider.
    MCPServerType:
      type: string
      enum:
        - http
        - stdio
    MCPAuthType:
      type: string
      enum:
        - OAUTH2
        - CUSTOM
        - NONE
      title: MCPAuthType
      description: Authentication type for MCP integrations.
    MCPToolSummary:
      properties:
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        enabled:
          type: boolean
          title: Enabled
          default: true
        requires_approval:
          type: boolean
          title: Requires Approval
          default: false
        status:
          type: string
          enum:
            - available
            - missing
          title: Status
          default: available
      type: object
      required:
        - name
      title: MCPToolSummary
      description: Summary of a tool discovered on a remote MCP server.
    MCPHTTPOAuth2ConnectionSpec:
      properties:
        requires_config:
          type: boolean
          title: Requires Config
          default: false
        credentials:
          items:
            $ref: '#/components/schemas/MCPConnectionCredential'
          type: array
          title: Credentials
        kind:
          type: string
          const: http_oauth2
          title: Kind
          default: http_oauth2
        server_type:
          type: string
          const: http
          title: Server Type
          default: http
        auth_type:
          type: string
          const: OAUTH2
          title: Auth Type
          default: OAUTH2
        server_uri:
          type: string
          title: Server Uri
        scopes:
          items:
            type: string
          type: array
          title: Scopes
        oauth_authorization_endpoint:
          anyOf:
            - type: string
            - type: 'null'
          title: Oauth Authorization Endpoint
        oauth_token_endpoint:
          anyOf:
            - type: string
            - type: 'null'
          title: Oauth Token Endpoint
        config_fields:
          items:
            $ref: '#/components/schemas/MCPConfigField'
          type: array
          title: Config Fields
          description: Configure-dialog view of ``credentials``; same data, UI field shape.
          readOnly: true
      type: object
      required:
        - server_uri
        - config_fields
      title: MCPHTTPOAuth2ConnectionSpec
      description: HTTP MCP server using MCP OAuth.
    MCPHTTPCustomConnectionSpec:
      properties:
        requires_config:
          type: boolean
          title: Requires Config
          default: false
        credentials:
          items:
            $ref: '#/components/schemas/MCPConnectionCredential'
          type: array
          title: Credentials
        kind:
          type: string
          const: http_custom
          title: Kind
          default: http_custom
        server_type:
          type: string
          const: http
          title: Server Type
          default: http
        auth_type:
          type: string
          const: CUSTOM
          title: Auth Type
          default: CUSTOM
        server_uri:
          type: string
          title: Server Uri
        config_fields:
          items:
            $ref: '#/components/schemas/MCPConfigField'
          type: array
          title: Config Fields
          description: Configure-dialog view of ``credentials``; same data, UI field shape.
          readOnly: true
      type: object
      required:
        - server_uri
        - config_fields
      title: MCPHTTPCustomConnectionSpec
      description: HTTP MCP server using user-provided headers or API keys.
    MCPHTTPNoneConnectionSpec:
      properties:
        requires_config:
          type: boolean
          title: Requires Config
          default: false
        credentials:
          items:
            $ref: '#/components/schemas/MCPConnectionCredential'
          type: array
          title: Credentials
        kind:
          type: string
          const: http_none
          title: Kind
          default: http_none
        server_type:
          type: string
          const: http
          title: Server Type
          default: http
        auth_type:
          type: string
          const: NONE
          title: Auth Type
          default: NONE
        server_uri:
          type: string
          title: Server Uri
        config_fields:
          items:
            $ref: '#/components/schemas/MCPConfigField'
          type: array
          title: Config Fields
          description: Configure-dialog view of ``credentials``; same data, UI field shape.
          readOnly: true
      type: object
      required:
        - server_uri
        - config_fields
      title: MCPHTTPNoneConnectionSpec
      description: HTTP MCP server with no authentication.
    MCPStdioCustomConnectionSpec:
      properties:
        requires_config:
          type: boolean
          title: Requires Config
          default: false
        credentials:
          items:
            $ref: '#/components/schemas/MCPConnectionCredential'
          type: array
          title: Credentials
        kind:
          type: string
          const: stdio_custom
          title: Kind
          default: stdio_custom
        server_type:
          type: string
          const: stdio
          title: Server Type
          default: stdio
        auth_type:
          type: string
          const: CUSTOM
          title: Auth Type
          default: CUSTOM
        stdio_command:
          anyOf:
            - type: string
            - type: 'null'
          title: Stdio Command
        stdio_args:
          items:
            type: string
          type: array
          title: Stdio Args
        stdio_env:
          items:
            type: string
          type: array
          title: Stdio Env
        packages:
          items:
            $ref: '#/components/schemas/MCPPackageOption'
          type: array
          title: Packages
        config_fields:
          items:
            $ref: '#/components/schemas/MCPConfigField'
          type: array
          title: Config Fields
          description: Configure-dialog view of ``credentials``; same data, UI field shape.
          readOnly: true
      type: object
      required:
        - config_fields
      title: MCPStdioCustomConnectionSpec
      description: Stdio MCP server using user-provided env vars.
    MCPStdioNoneConnectionSpec:
      properties:
        requires_config:
          type: boolean
          title: Requires Config
          default: false
        credentials:
          items:
            $ref: '#/components/schemas/MCPConnectionCredential'
          type: array
          title: Credentials
        kind:
          type: string
          const: stdio_none
          title: Kind
          default: stdio_none
        server_type:
          type: string
          const: stdio
          title: Server Type
          default: stdio
        auth_type:
          type: string
          const: NONE
          title: Auth Type
          default: NONE
        stdio_command:
          anyOf:
            - type: string
            - type: 'null'
          title: Stdio Command
        stdio_args:
          items:
            type: string
          type: array
          title: Stdio Args
        stdio_env:
          items:
            type: string
          type: array
          title: Stdio Env
        packages:
          items:
            $ref: '#/components/schemas/MCPPackageOption'
          type: array
          title: Packages
        config_fields:
          items:
            $ref: '#/components/schemas/MCPConfigField'
          type: array
          title: Config Fields
          description: Configure-dialog view of ``credentials``; same data, UI field shape.
          readOnly: true
      type: object
      required:
        - config_fields
      title: MCPStdioNoneConnectionSpec
      description: Stdio MCP server with no authentication.
    MCPConnectionCredential:
      properties:
        key:
          type: string
          title: Key
        label:
          type: string
          title: Label
        description:
          type: string
          title: Description
        required:
          type: boolean
          title: Required
          default: true
        secret:
          type: boolean
          title: Secret
          default: true
        default_value:
          anyOf:
            - type: string
            - type: 'null'
          title: Default Value
        placeholder:
          anyOf:
            - type: string
            - type: 'null'
          title: Placeholder
          description: >-
            Optional placeholder shown in the configure dialog to hint the
            expected value format (e.g. 'https://your-console.example.net').
        type:
          type: string
          enum:
            - string
            - url
          title: Type
          description: >-
            Value type used for light client/server validation. 'url' requires
            an http(s):// scheme.
          default: string
        target:
          type: string
          enum:
            - server_uri
            - oauth_client
            - http_header
            - stdio_env
          title: Target
      type: object
      required:
        - key
        - label
        - description
        - target
      title: MCPConnectionCredential
      description: User-supplied value needed to materialize a catalog connection.
    MCPConfigField:
      properties:
        key:
          type: string
          title: Key
        label:
          type: string
          title: Label
        description:
          type: string
          title: Description
        target:
          type: string
          enum:
            - server_uri
            - oauth_client
            - http_header
            - stdio_env
          title: Target
        required:
          type: boolean
          title: Required
          default: true
        secret:
          type: boolean
          title: Secret
          default: false
        placeholder:
          anyOf:
            - type: string
            - type: 'null'
          title: Placeholder
        type:
          type: string
          enum:
            - string
            - url
          title: Type
          default: string
      type: object
      required:
        - key
        - label
        - description
        - target
      title: MCPConfigField
      description: Typed configure-dialog field declared by a catalog spec.
    MCPPackageOption:
      properties:
        manager:
          type: string
          title: Manager
        command:
          type: string
          title: Command
        args:
          items:
            type: string
          type: array
          title: Args
        package:
          anyOf:
            - type: string
            - type: 'null'
          title: Package
      type: object
      required:
        - manager
        - command
      title: MCPPackageOption
      description: Supported stdio package launch option.
  securitySchemes:
    APIKeyCookie:
      type: apiKey
      in: cookie
      name: fastapiusersauth
    ServiceAccountApiKeyBearer:
      type: http
      description: Tracecat service account API key.
      scheme: bearer

````