Amplitude · Capability

Amplitude Taxonomy API — Event Properties

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

Run with Naftiko AmplitudeEvent Properties

What You Can Do

GET
Listeventproperties — Amplitude List All Event Properties
/v1/api/2/taxonomy/event-property
POST
Createeventproperty — Amplitude Create an Event Property
/v1/api/2/taxonomy/event-property
GET
Geteventproperty — Amplitude Get an Event Property
/v1/api/2/taxonomy/event-property/{event-property}
PUT
Updateeventproperty — Amplitude Update an Event Property
/v1/api/2/taxonomy/event-property/{event-property}
DELETE
Deleteeventproperty — Amplitude Delete an Event Property
/v1/api/2/taxonomy/event-property/{event-property}

MCP Tools

amplitude-list-all-event-properties

Amplitude List All Event Properties

read-only idempotent
amplitude-create-event-property

Amplitude Create an Event Property

amplitude-get-event-property

Amplitude Get an Event Property

read-only idempotent
amplitude-update-event-property

Amplitude Update an Event Property

idempotent
amplitude-delete-event-property

Amplitude Delete an Event Property

idempotent

Capability Spec

taxonomy-event-properties.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Amplitude Taxonomy API — Event Properties
  description: 'Amplitude Taxonomy API — Event Properties. 5 operations. Lead operation: Amplitude List All Event Properties.
    Self-contained Naftiko capability covering one Amplitude business surface.'
  tags:
  - Amplitude
  - Event Properties
  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-properties
    baseUri: https://amplitude.com
    description: Amplitude Taxonomy API — Event Properties business capability. Self-contained, no shared references.
    resources:
    - name: api-2-taxonomy-event-property
      path: /api/2/taxonomy/event-property
      operations:
      - name: listeventproperties
        method: GET
        description: Amplitude List All Event Properties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_type
          in: query
          type: string
          description: The event type to list properties for.
          required: true
      - name: createeventproperty
        method: POST
        description: Amplitude Create an Event Property
        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-property-event_property
      path: /api/2/taxonomy/event-property/{event_property}
      operations:
      - name: geteventproperty
        method: GET
        description: Amplitude Get an Event Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_property
          in: path
          type: string
          description: The name of the event property.
          required: true
        - name: event_type
          in: query
          type: string
          description: The event type the property belongs to.
          required: true
      - name: updateeventproperty
        method: PUT
        description: Amplitude Update an Event Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_property
          in: path
          type: string
          description: The name of the event property to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteeventproperty
        method: DELETE
        description: Amplitude Delete an Event Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: event_property
          in: path
          type: string
          description: The name of the event property to delete.
          required: true
        - name: event_type
          in: query
          type: string
          description: The event type the property belongs to.
          required: true
    authentication:
      type: basic
      username: '{{env.AMPLITUDE_USER}}'
      password: '{{env.AMPLITUDE_PASS}}'
  exposes:
  - type: rest
    namespace: taxonomy-event-properties-rest
    port: 8080
    description: REST adapter for Amplitude Taxonomy API — Event Properties. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/2/taxonomy/event-property
      name: api-2-taxonomy-event-property
      description: REST surface for api-2-taxonomy-event-property.
      operations:
      - method: GET
        name: listeventproperties
        description: Amplitude List All Event Properties
        call: taxonomy-event-properties.listeventproperties
        with:
          event_type: rest.event_type
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createeventproperty
        description: Amplitude Create an Event Property
        call: taxonomy-event-properties.createeventproperty
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/2/taxonomy/event-property/{event-property}
      name: api-2-taxonomy-event-property-event-property
      description: REST surface for api-2-taxonomy-event-property-event_property.
      operations:
      - method: GET
        name: geteventproperty
        description: Amplitude Get an Event Property
        call: taxonomy-event-properties.geteventproperty
        with:
          event_property: rest.event_property
          event_type: rest.event_type
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateeventproperty
        description: Amplitude Update an Event Property
        call: taxonomy-event-properties.updateeventproperty
        with:
          event_property: rest.event_property
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteeventproperty
        description: Amplitude Delete an Event Property
        call: taxonomy-event-properties.deleteeventproperty
        with:
          event_property: rest.event_property
          event_type: rest.event_type
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: taxonomy-event-properties-mcp
    port: 9090
    transport: http
    description: MCP adapter for Amplitude Taxonomy API — Event Properties. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: amplitude-list-all-event-properties
      description: Amplitude List All Event Properties
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: taxonomy-event-properties.listeventproperties
      with:
        event_type: tools.event_type
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-create-event-property
      description: Amplitude Create an Event Property
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: taxonomy-event-properties.createeventproperty
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-get-event-property
      description: Amplitude Get an Event Property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: taxonomy-event-properties.geteventproperty
      with:
        event_property: tools.event_property
        event_type: tools.event_type
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-update-event-property
      description: Amplitude Update an Event Property
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: taxonomy-event-properties.updateeventproperty
      with:
        event_property: tools.event_property
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: amplitude-delete-event-property
      description: Amplitude Delete an Event Property
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: taxonomy-event-properties.deleteeventproperty
      with:
        event_property: tools.event_property
        event_type: tools.event_type
      outputParameters:
      - type: object
        mapping: $.