Mezmo · Capability

Mezmo Log Ingestion API — Logs

Self-contained Naftiko capability for ingesting log lines into Mezmo at logs.mezmo.com.

Mezmo Log Ingestion API — Logs is a Naftiko capability published by Mezmo, one of 14 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/logs/ingest.

The capability includes 1 state-changing operation. Lead operation: Send a batch of log lines to Mezmo. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Mezmo, Logs, and Ingestion.

Run with Naftiko MezmoLogsIngestion

What You Can Do

POST
Ingestlogs — Mezmo Ingest Logs
/v1/logs/ingest

MCP Tools

mezmo-ingest-logs

Send a batch of log lines to Mezmo.

Capability Spec

log-ingestion-logs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Mezmo Log Ingestion API — Logs
  description: Self-contained Naftiko capability for ingesting log lines into Mezmo at logs.mezmo.com.
  tags:
  - Mezmo
  - Logs
  - Ingestion
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    MEZMO_INGESTION_KEY: MEZMO_INGESTION_KEY
capability:
  consumes:
  - type: http
    namespace: log-ingestion-logs
    baseUri: https://logs.mezmo.com
    description: Mezmo log ingestion endpoint.
    resources:
    - name: logs-ingest
      path: /logs/ingest
      operations:
      - name: ingestlogs
        method: POST
        description: Mezmo Ingest Logs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: hostname
          in: query
          type: string
          required: true
          description: Originating hostname.
        - name: tags
          in: query
          type: string
          required: false
          description: Comma-separated tags.
        - name: body
          in: body
          type: object
          required: true
          description: Batch of lines (JSON).
    authentication:
      type: apikey
      key: Authorization
      value: 'Token {{env.MEZMO_INGESTION_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: log-ingestion-logs-rest
    port: 8080
    description: REST adapter for Mezmo log ingestion.
    resources:
    - path: /v1/logs/ingest
      name: logs-ingest
      description: REST surface for log ingestion.
      operations:
      - method: POST
        name: ingestlogs
        description: Mezmo Ingest Logs
        call: log-ingestion-logs.ingestlogs
        with:
          hostname: rest.query.hostname
          tags: rest.query.tags
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: log-ingestion-logs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Mezmo log ingestion.
    tools:
    - name: mezmo-ingest-logs
      description: Send a batch of log lines to Mezmo.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: log-ingestion-logs.ingestlogs
      with:
        hostname: tools.hostname
        tags: tools.tags
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.