TIBCO · Capability

TIBCO Spotfire Analytics API — Users

TIBCO Spotfire Analytics API — Users. 2 operations. Lead operation: List users. Self-contained Naftiko capability covering one Tibco business surface.

Run with Naftiko TibcoUsers

What You Can Do

GET
Listusers — List users
/v1/users
GET
Getuser — Get a user
/v1/users/{userid}

MCP Tools

list-users

List users

read-only idempotent
get-user

Get a user

read-only idempotent

Capability Spec

spotfire-users.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: TIBCO Spotfire Analytics API — Users
  description: 'TIBCO Spotfire Analytics API — Users. 2 operations. Lead operation: List users. Self-contained Naftiko capability
    covering one Tibco business surface.'
  tags:
  - Tibco
  - Users
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TIBCO_API_KEY: TIBCO_API_KEY
capability:
  consumes:
  - type: http
    namespace: spotfire-users
    baseUri: https://spotfire.cloud.tibco.com/api/rest/v1
    description: TIBCO Spotfire Analytics API — Users business capability. Self-contained, no shared references.
    resources:
    - name: users
      path: /users
      operations:
      - name: listusers
        method: GET
        description: List users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: users-userId
      path: /users/{userId}
      operations:
      - name: getuser
        method: GET
        description: Get a user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.TIBCO_API_KEY}}'
  exposes:
  - type: rest
    namespace: spotfire-users-rest
    port: 8080
    description: REST adapter for TIBCO Spotfire Analytics API — Users. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/users
      name: users
      description: REST surface for users.
      operations:
      - method: GET
        name: listusers
        description: List users
        call: spotfire-users.listusers
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{userid}
      name: users-userid
      description: REST surface for users-userId.
      operations:
      - method: GET
        name: getuser
        description: Get a user
        call: spotfire-users.getuser
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: spotfire-users-mcp
    port: 9090
    transport: http
    description: MCP adapter for TIBCO Spotfire Analytics API — Users. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-users
      description: List users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spotfire-users.listusers
      outputParameters:
      - type: object
        mapping: $.
    - name: get-user
      description: Get a user
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: spotfire-users.getuser
      outputParameters:
      - type: object
        mapping: $.