Amplitude · Capability

Amplitude Taxonomy API — Event Types

Amplitude Taxonomy API — Event Types. 5 operations. Lead operation: Amplitude List All Event Types. Self-contained Naftiko capability covering one Amplitude business surface.

Run with Naftiko AmplitudeEvent Types

What You Can Do

GET
Listeventtypes — Amplitude List All Event Types
/v1/api/2/taxonomy/event
POST
Createeventtype — Amplitude Create an Event Type
/v1/api/2/taxonomy/event
GET
Geteventtype — Amplitude Get an Event Type
/v1/api/2/taxonomy/event/{event-type}
PUT
Updateeventtype — Amplitude Update an Event Type
/v1/api/2/taxonomy/event/{event-type}
DELETE
Deleteeventtype — Amplitude Delete an Event Type
/v1/api/2/taxonomy/event/{event-type}

MCP Tools

amplitude-list-all-event-types

Amplitude List All Event Types

read-only idempotent
amplitude-create-event-type

Amplitude Create an Event Type

amplitude-get-event-type

Amplitude Get an Event Type

read-only idempotent
amplitude-update-event-type

Amplitude Update an Event Type

idempotent
amplitude-delete-event-type

Amplitude Delete an Event Type

idempotent

Capability Spec

taxonomy-event-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amplitude Taxonomy API — Event Types
  description: 'Amplitude Taxonomy API — Event Types. 5 operations. Lead operation: Amplitude List All Event Types. Self-contained
    Naftiko capability covering one Amplitude business surface.'
  tags:
  - Amplitude
  - Event Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AMPLITUDE_API_KEY: AMPLITUDE_API_KEY
capability:
  consumes:
  - type: http
    namespace: taxonomy-event-types
    baseUri: https://amplitude.com
    description: Amplitude Taxonomy API — Event Types business capability. Self-contained, no shared references.
    resources:
    - name: api-2-taxonomy-event
      path: /api/2/taxonomy/event
      operations:
      - name: listeventtypes
        method: GET
        description: Amplitude List All Event Types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: showDeleted
          in: query
          type: boolean
          description: When true, include deleted event types in the response.
      - name: createeventtype
        method: POST
        description: Amplitude Create an Event Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-2-taxonomy-event-event_type
      path: /api/2/taxonomy/event/{event_type}
      operations:
      - name: geteventtype
        method: GET
        description: Amplitude Get an Event Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateeventtype
        method: PUT
        description: Amplitude Update an Event Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteeventtype
        method: DELETE
        description: Amplitude Delete an Event Type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.AMPLITUDE_USER}}'
      password: '{{env.AMPLITUDE_PASS}}'
  exposes:
  - type: rest
    namespace: taxonomy-event-types-rest
    port: 8080
    description: REST adapter for Amplitude Taxonomy API — Event Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/2/taxonomy/event
      name: api-2-taxonomy-event
      description: REST surface for api-2-taxonomy-event.
      operations:
      - method: GET
        name: listeventtypes
        description: Amplitude List All Event Types
        call: taxonomy-event-types.listeventtypes
        with:
          showDeleted: rest.showDeleted
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventtype
        description: Amplitude Create an Event Type
        call: taxonomy-event-types.createeventtype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/2/taxonomy/event/{event-type}
      name: api-2-taxonomy-event-event-type
      description: REST surface for api-2-taxonomy-event-event_type.
      operations:
      - method: GET
        name: geteventtype
        description: Amplitude Get an Event Type
        call: taxonomy-event-types.geteventtype
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateeventtype
        description: Amplitude Update an Event Type
        call: taxonomy-event-types.updateeventtype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventtype
        description: Amplitude Delete an Event Type
        call: taxonomy-event-types.deleteeventtype
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: taxonomy-event-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amplitude Taxonomy API — Event Types. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: amplitude-list-all-event-types
      description: Amplitude List All Event Types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: taxonomy-event-types.listeventtypes
      with:
        showDeleted: tools.showDeleted
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-create-event-type
      description: Amplitude Create an Event Type
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: taxonomy-event-types.createeventtype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-get-event-type
      description: Amplitude Get an Event Type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: taxonomy-event-types.geteventtype
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-update-event-type
      description: Amplitude Update an Event Type
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: taxonomy-event-types.updateeventtype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-delete-event-type
      description: Amplitude Delete an Event Type
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: taxonomy-event-types.deleteeventtype
      outputParameters:
      - type: object
        mapping: $.