TimescaleDB / Tiger Data · Capability

Tiger Cloud API — Analytics

Tiger Cloud API — Analytics. 2 operations. Lead operation: Identify a user. Self-contained Naftiko capability covering one Timescaledb business surface.

Run with Naftiko TimescaledbAnalytics

What You Can Do

POST
Identifyuser — Identify a user
/v1/analytics/identify
POST
Trackevent — Track an analytics event
/v1/analytics/track

MCP Tools

identify-user

Identify a user

track-analytics-event

Track an analytics event

Capability Spec

timescaledb-analytics.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tiger Cloud API — Analytics
  description: 'Tiger Cloud API — Analytics. 2 operations. Lead operation: Identify a user. Self-contained Naftiko capability
    covering one Timescaledb business surface.'
  tags:
  - Timescaledb
  - Analytics
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TIMESCALEDB_API_KEY: TIMESCALEDB_API_KEY
capability:
  consumes:
  - type: http
    namespace: timescaledb-analytics
    baseUri: https://console.cloud.tigerdata.com/public/api/v1
    description: Tiger Cloud API — Analytics business capability. Self-contained, no shared references.
    resources:
    - name: analytics-identify
      path: /analytics/identify
      operations:
      - name: identifyuser
        method: POST
        description: Identify a user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: analytics-track
      path: /analytics/track
      operations:
      - name: trackevent
        method: POST
        description: Track an analytics event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
  exposes:
  - type: rest
    namespace: timescaledb-analytics-rest
    port: 8080
    description: REST adapter for Tiger Cloud API — Analytics. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/analytics/identify
      name: analytics-identify
      description: REST surface for analytics-identify.
      operations:
      - method: POST
        name: identifyuser
        description: Identify a user
        call: timescaledb-analytics.identifyuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/analytics/track
      name: analytics-track
      description: REST surface for analytics-track.
      operations:
      - method: POST
        name: trackevent
        description: Track an analytics event
        call: timescaledb-analytics.trackevent
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: timescaledb-analytics-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tiger Cloud API — Analytics. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: identify-user
      description: Identify a user
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: timescaledb-analytics.identifyuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: track-analytics-event
      description: Track an analytics event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: timescaledb-analytics.trackevent
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.