Chaos Mesh · Capability

Chaos Mesh Dashboard API — Archives

Chaos Mesh Dashboard API — Archives. 3 operations. Lead operation: Chaos Mesh List archived experiments. Self-contained Naftiko capability covering one Chaos Mesh business surface.

Run with Naftiko Chaos MeshArchives

What You Can Do

GET
Listarchives — Chaos Mesh List archived experiments
/v1/api/archives
GET
Getarchive — Chaos Mesh Get an archived experiment
/v1/api/archives/{uid}
DELETE
Deletearchive — Chaos Mesh Delete an archive record
/v1/api/archives/{uid}

MCP Tools

chaos-mesh-list-archived-experiments

Chaos Mesh List archived experiments

read-only idempotent
chaos-mesh-get-archived-experiment

Chaos Mesh Get an archived experiment

read-only idempotent
chaos-mesh-delete-archive-record

Chaos Mesh Delete an archive record

idempotent

Capability Spec

dashboard-archives-2.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Chaos Mesh Dashboard API — Archives
  description: 'Chaos Mesh Dashboard API — Archives. 3 operations. Lead operation: Chaos Mesh List archived experiments. Self-contained
    Naftiko capability covering one Chaos Mesh business surface.'
  tags:
  - Chaos Mesh
  - Archives
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CHAOS_MESH_API_KEY: CHAOS_MESH_API_KEY
capability:
  consumes:
  - type: http
    namespace: dashboard-archives-2
    baseUri: http://{dashboardHost}:{dashboardPort}
    description: Chaos Mesh Dashboard API — Archives business capability. Self-contained, no shared references.
    resources:
    - name: api-archives
      path: /api/archives
      operations:
      - name: listarchives
        method: GET
        description: Chaos Mesh List archived experiments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-archives-uid
      path: /api/archives/{uid}
      operations:
      - name: getarchive
        method: GET
        description: Chaos Mesh Get an archived experiment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deletearchive
        method: DELETE
        description: Chaos Mesh Delete an archive record
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CHAOS_MESH_API_KEY}}'
  exposes:
  - type: rest
    namespace: dashboard-archives-2-rest
    port: 8080
    description: REST adapter for Chaos Mesh Dashboard API — Archives. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/archives
      name: api-archives
      description: REST surface for api-archives.
      operations:
      - method: GET
        name: listarchives
        description: Chaos Mesh List archived experiments
        call: dashboard-archives-2.listarchives
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/archives/{uid}
      name: api-archives-uid
      description: REST surface for api-archives-uid.
      operations:
      - method: GET
        name: getarchive
        description: Chaos Mesh Get an archived experiment
        call: dashboard-archives-2.getarchive
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletearchive
        description: Chaos Mesh Delete an archive record
        call: dashboard-archives-2.deletearchive
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: dashboard-archives-2-mcp
    port: 9090
    transport: http
    description: MCP adapter for Chaos Mesh Dashboard API — Archives. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: chaos-mesh-list-archived-experiments
      description: Chaos Mesh List archived experiments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dashboard-archives-2.listarchives
      outputParameters:
      - type: object
        mapping: $.
    - name: chaos-mesh-get-archived-experiment
      description: Chaos Mesh Get an archived experiment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dashboard-archives-2.getarchive
      outputParameters:
      - type: object
        mapping: $.
    - name: chaos-mesh-delete-archive-record
      description: Chaos Mesh Delete an archive record
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: dashboard-archives-2.deletearchive
      outputParameters:
      - type: object
        mapping: $.