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

# List MCP servers skipped by the viability check

> List MCP servers skipped due to a failed viability check (server down or
slow at boot or last reload). Use ``reload_mcp`` to re-attach one once healthy.

Each entry is ``{"title": <name>, "status": "unavailable"}`` — title plus a
coarse status only. A query op rides the same fan-out primitive as a mutation:
every origin's list arrives as its per-origin ``payload`` in the fleet report
(this worker's list on its own self entry); ``targets`` optionally restricts the
query to specific workers.



## OpenAPI

````yaml /openapi.json get /api/mcp-status/failed
openapi: 3.1.0
info:
  description: The operator HTTP surface served under /api/*.
  title: tai42-skeleton API
  version: 0.1.1
servers: []
security: []
paths:
  /api/mcp-status/failed:
    get:
      tags:
        - manifest
      summary: List MCP servers skipped by the viability check
      description: >-
        List MCP servers skipped due to a failed viability check (server down or

        slow at boot or last reload). Use ``reload_mcp`` to re-attach one once
        healthy.


        Each entry is ``{"title": <name>, "status": "unavailable"}`` — title
        plus a

        coarse status only. A query op rides the same fan-out primitive as a
        mutation:

        every origin's list arrives as its per-origin ``payload`` in the fleet
        report

        (this worker's list on its own self entry); ``targets`` optionally
        restricts the

        query to specific workers.
      operationId: get_api_mcp_status_failed
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                required:
                  - data
                type: object
          description: Success.
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
          description: Missing or invalid api key.
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Error:
      properties:
        error:
          type: string
      required:
        - error
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````