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

# Browse the Swarmd MCP catalog (curated + OpenAPI-derived templates)

> **Security Requirements**

| Auth Types | Entities | Permissions | Required Roles |
|------------|----------|-------------|----------------|
| USER | MCP_REGISTRY | READ | MCP_REGISTRY:READ |



## OpenAPI

````yaml /openapi/swarmd.json get /registry/v1/marketplace/catalog
openapi: 3.1.0
info:
  title: Relay
  version: v0
servers:
  - url: https://api.dev.swarmd.ai
    description: Development
security: []
tags:
  - name: Policy Groups
    x-displayName: Policy Groups
  - name: Policy Bindings
    x-displayName: Policy Bindings
  - name: Evaluation Packs
    x-displayName: Evaluation Packs
  - name: Webhooks
    x-displayName: Webhooks
  - name: MCP JSON-RPC
    x-displayName: MCP JSON-RPC
  - name: Conversations
    x-displayName: Conversations
  - name: Human JSON-RPC
    x-displayName: Human JSON-RPC
  - name: Channel JSON-RPC
    x-displayName: Channel JSON-RPC
  - name: HITL Approvals
    x-displayName: HITL Approvals
  - name: Agent JSON-RPC
    x-displayName: Agent JSON-RPC
  - name: Tasks
    x-displayName: Tasks
  - name: Push Notifications
    x-displayName: Push Notifications
  - name: Messaging
    x-displayName: Messaging
  - name: LLM Runtime
    x-displayName: LLM Runtime
  - name: Agent Discovery
    x-displayName: Agent Discovery
  - name: MCP Servers
    x-displayName: MCP Servers
  - name: LLM Gateways
    x-displayName: LLM Gateways
  - name: Agents
    x-displayName: Agents
  - name: User Subscriptions
    x-displayName: User Subscriptions
  - name: LLM Providers
    x-displayName: LLM Providers
  - name: LLM Gateway Subscriptions
    x-displayName: LLM Gateway Subscriptions
  - name: Kill Switches
    x-displayName: Kill Switches
  - name: Channels
    x-displayName: Channels
  - name: Channel Subscriptions
    x-displayName: Channel Subscriptions
  - name: Agent Subscriptions
    x-displayName: Agent Subscriptions
  - name: Marketplace
    x-displayName: Marketplace
  - name: Identity Providers
    x-displayName: Identity Providers
  - name: Groups
    x-displayName: Groups
  - name: Authentication
    x-displayName: Authentication
  - name: Users
    x-displayName: Users
  - name: Tenants
    x-displayName: Tenants
  - name: mcp-consent-controller
    x-displayName: mcp-consent-controller
  - name: Audit Monitors
    x-displayName: Audit Monitors
  - name: Audit Integrity
    x-displayName: Audit Integrity
  - name: Audit Events
    x-displayName: Audit Events
  - name: Audit Traces
    x-displayName: Audit Traces
  - name: audit-rest-controller
    x-displayName: audit-rest-controller
  - name: Audit Dashboard
    x-displayName: Audit Dashboard
  - name: A2A Payments
    x-displayName: A2A Payments
paths:
  /registry/v1/marketplace/catalog:
    get:
      tags:
        - MCP Servers
      summary: Browse the Swarmd MCP catalog (curated + OpenAPI-derived templates)
      description: |-
        **Security Requirements**

        | Auth Types | Entities | Permissions | Required Roles |
        |------------|----------|-------------|----------------|
        | USER | MCP_REGISTRY | READ | MCP_REGISTRY:READ |
      operationId: getMarketplaceCatalog
      parameters:
        - name: search
          in: query
          required: false
          schema:
            type: string
        - name: source
          in: query
          required: false
          schema:
            type: string
            enum:
              - CURATED
              - OPENAPI_DERIVED
        - name: pageable
          in: query
          required: true
          schema:
            $ref: '#/components/schemas/Registry_Pageable'
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: >-
                  #/components/schemas/Registry_PageResponseMcpCatalogEntryResponse
      security:
        - Registry_bearerAuth: []
components:
  schemas:
    Registry_Pageable:
      type: object
      properties:
        page:
          type: integer
          format: int32
        size:
          type: integer
          format: int32
        sort:
          type: array
          items:
            type: string
    Registry_PageResponseMcpCatalogEntryResponse:
      type: object
      properties:
        content:
          type: array
          items:
            $ref: '#/components/schemas/Registry_McpCatalogEntryResponse'
        page:
          type: integer
          format: int32
        size:
          type: integer
          format: int32
        totalElements:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int32
    Registry_McpCatalogEntryResponse:
      type: object
      description: >-
        A marketplace catalog entry. Curated metadata used to seed a normal
        mcp_servers row in the caller's tenant on install. Carries no
        credentials.
      properties:
        catalogId:
          type: string
          format: uuid
        slug:
          type: string
        displayName:
          type: string
        description:
          type: string
        logoUrl:
          type: string
        documentationUrl:
          type: string
        signupUrl:
          type: string
        serverUrl:
          type: string
        transport:
          type: string
          enum:
            - STREAMABLE_HTTP
            - SSE
            - REST
        protocolVersion:
          type: string
        authScheme:
          type: string
          enum:
            - NONE
            - BEARER
            - API_KEY
            - QUERY_PARAM
            - OAUTH2_CLIENT_CREDENTIALS
            - OAUTH2_AUTHORIZATION_CODE
        authTemplate:
          type: object
          additionalProperties:
            path: /audit/v1/agents/{agentId}/metrics
          description: >-
            Auth-scheme-specific defaults (e.g. OAuth endpoints, default
            scopes). Shape varies by authScheme; clients should treat unknown
            keys as forward-compatible.
        tags:
          type: array
          items:
            type: string
        source:
          type: string
          enum:
            - CURATED
            - OPENAPI_DERIVED
        version:
          type: integer
          format: int32
  securitySchemes:
    Registry_bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token (USER, AGENT, or SERVICE auth)

````