Mixpanel · Capability

Mixpanel Ingestion API — Lookup Tables

Mixpanel Ingestion API — Lookup Tables. 3 operations. Lead operation: Mixpanel List lookup tables. Self-contained Naftiko capability covering one Mixpanel business surface.

Run with Naftiko MixpanelLookup Tables

What You Can Do

GET
Listlookuptables — Mixpanel List lookup tables
/v1/lookup-tables
PUT
Replacelookuptable — Mixpanel Replace lookup table
/v1/lookup-tables/{lookuptableid}
DELETE
Deletelookuptable — Mixpanel Delete lookup table
/v1/lookup-tables/{lookuptableid}

MCP Tools

mixpanel-list-lookup-tables

Mixpanel List lookup tables

read-only idempotent
mixpanel-replace-lookup-table

Mixpanel Replace lookup table

idempotent
mixpanel-delete-lookup-table

Mixpanel Delete lookup table

idempotent

Capability Spec

ingestion-lookup-tables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Mixpanel Ingestion API — Lookup Tables
  description: 'Mixpanel Ingestion API — Lookup Tables. 3 operations. Lead operation: Mixpanel List lookup tables. Self-contained
    Naftiko capability covering one Mixpanel business surface.'
  tags:
  - Mixpanel
  - Lookup Tables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MIXPANEL_API_KEY: MIXPANEL_API_KEY
capability:
  consumes:
  - type: http
    namespace: ingestion-lookup-tables
    baseUri: https://api.mixpanel.com
    description: Mixpanel Ingestion API — Lookup Tables business capability. Self-contained, no shared references.
    resources:
    - name: lookup-tables
      path: /lookup-tables
      operations:
      - name: listlookuptables
        method: GET
        description: Mixpanel List lookup tables
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: lookup-tables-lookupTableId
      path: /lookup-tables/{lookupTableId}
      operations:
      - name: replacelookuptable
        method: PUT
        description: Mixpanel Replace lookup table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: lookupTableId
          in: path
          type: string
          description: The ID of the lookup table to replace
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletelookuptable
        method: DELETE
        description: Mixpanel Delete lookup table
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: lookupTableId
          in: path
          type: string
          description: The ID of the lookup table to delete
          required: true
    authentication:
      type: apikey
      key: token
      value: '{{env.MIXPANEL_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: ingestion-lookup-tables-rest
    port: 8080
    description: REST adapter for Mixpanel Ingestion API — Lookup Tables. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/lookup-tables
      name: lookup-tables
      description: REST surface for lookup-tables.
      operations:
      - method: GET
        name: listlookuptables
        description: Mixpanel List lookup tables
        call: ingestion-lookup-tables.listlookuptables
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/lookup-tables/{lookuptableid}
      name: lookup-tables-lookuptableid
      description: REST surface for lookup-tables-lookupTableId.
      operations:
      - method: PUT
        name: replacelookuptable
        description: Mixpanel Replace lookup table
        call: ingestion-lookup-tables.replacelookuptable
        with:
          lookupTableId: rest.lookupTableId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelookuptable
        description: Mixpanel Delete lookup table
        call: ingestion-lookup-tables.deletelookuptable
        with:
          lookupTableId: rest.lookupTableId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: ingestion-lookup-tables-mcp
    port: 9090
    transport: http
    description: MCP adapter for Mixpanel Ingestion API — Lookup Tables. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: mixpanel-list-lookup-tables
      description: Mixpanel List lookup tables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ingestion-lookup-tables.listlookuptables
      outputParameters:
      - type: object
        mapping: $.
    - name: mixpanel-replace-lookup-table
      description: Mixpanel Replace lookup table
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: ingestion-lookup-tables.replacelookuptable
      with:
        lookupTableId: tools.lookupTableId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: mixpanel-delete-lookup-table
      description: Mixpanel Delete lookup table
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: ingestion-lookup-tables.deletelookuptable
      with:
        lookupTableId: tools.lookupTableId
      outputParameters:
      - type: object
        mapping: $.