Mezmo · Capability

Mezmo Archiving API — Archiving

Configure cold-storage archiving destinations for Mezmo logs.

Mezmo Archiving API — Archiving is a Naftiko capability published by Mezmo, one of 14 capabilities the APIs.io network indexes for this provider. It bundles 4 operations.

The capability includes 1 read-only operation and 3 state-changing operations. Lead operation: Mezmo Get Archive Configuration. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Mezmo, Archiving, and Storage.

Run with Naftiko MezmoArchivingStorage

MCP Tools

mezmo-get-archive-config

Mezmo Get Archive Configuration

read-only
mezmo-create-archive-config

Mezmo Create Archive Configuration

mezmo-update-archive-config

Mezmo Update Archive Configuration

mezmo-delete-archive-config

Mezmo Delete Archive Configuration

Capability Spec

archiving-archiving.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Mezmo Archiving API — Archiving
  description: Configure cold-storage archiving destinations for Mezmo logs.
  tags:
  - Mezmo
  - Archiving
  - Storage
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    MEZMO_ACCESS_TOKEN: MEZMO_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: archiving-archiving
    baseUri: https://api.mezmo.com/v1/config
    resources:
    - name: archiving
      path: /archiving
      operations:
      - name: getarchiveconfig
        method: GET
        description: Mezmo Get Archive Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createarchiveconfig
        method: POST
        description: Mezmo Create Archive Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
      - name: updatearchiveconfig
        method: PUT
        description: Mezmo Update Archive Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
      - name: deletearchiveconfig
        method: DELETE
        description: Mezmo Delete Archive Configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: 'Token {{env.MEZMO_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: mcp
    namespace: archiving-archiving-mcp
    port: 9090
    transport: http
    tools:
    - name: mezmo-get-archive-config
      description: Mezmo Get Archive Configuration
      hints:
        readOnly: true
      call: archiving-archiving.getarchiveconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-create-archive-config
      description: Mezmo Create Archive Configuration
      call: archiving-archiving.createarchiveconfig
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-update-archive-config
      description: Mezmo Update Archive Configuration
      call: archiving-archiving.updatearchiveconfig
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-delete-archive-config
      description: Mezmo Delete Archive Configuration
      hints:
        destructive: true
      call: archiving-archiving.deletearchiveconfig
      outputParameters:
      - type: object
        mapping: $.