Mezmo · Capability

Mezmo Ingestion Control — Exclusions

Manage exclusion rules that drop log lines before storage.

Mezmo Ingestion Control — Exclusions 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 List Exclusion Rules. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Mezmo, Ingestion, and Exclusions.

Run with Naftiko MezmoIngestionExclusions

MCP Tools

mezmo-list-exclusions

Mezmo List Exclusion Rules

read-only
mezmo-create-exclusion

Mezmo Create Exclusion Rule

mezmo-update-exclusion

Mezmo Update Exclusion Rule

mezmo-delete-exclusion

Mezmo Delete Exclusion Rule

Capability Spec

ingestion-control-exclusions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Mezmo Ingestion Control — Exclusions
  description: Manage exclusion rules that drop log lines before storage.
  tags:
  - Mezmo
  - Ingestion
  - Exclusions
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    MEZMO_ACCESS_TOKEN: MEZMO_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: ingestion-control-exclusions
    baseUri: https://api.mezmo.com/v1/config/ingestion
    resources:
    - name: exclusions
      path: /exclusions
      operations:
      - name: listexclusions
        method: GET
        description: Mezmo List Exclusion Rules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createexclusion
        method: POST
        description: Mezmo Create Exclusion Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: exclusions-ruleid
      path: /exclusions/{ruleid}
      operations:
      - name: updateexclusion
        method: PATCH
        description: Mezmo Update Exclusion Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
      - name: deleteexclusion
        method: DELETE
        description: Mezmo Delete Exclusion Rule
        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: ingestion-control-exclusions-mcp
    port: 9090
    transport: http
    tools:
    - name: mezmo-list-exclusions
      description: Mezmo List Exclusion Rules
      hints:
        readOnly: true
      call: ingestion-control-exclusions.listexclusions
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-create-exclusion
      description: Mezmo Create Exclusion Rule
      call: ingestion-control-exclusions.createexclusion
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-update-exclusion
      description: Mezmo Update Exclusion Rule
      call: ingestion-control-exclusions.updateexclusion
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mezmo-delete-exclusion
      description: Mezmo Delete Exclusion Rule
      hints:
        destructive: true
      call: ingestion-control-exclusions.deleteexclusion
      outputParameters:
      - type: object
        mapping: $.