Tanium · Capability

Tanium Connect API — Connections

Tanium Connect API — Connections. 8 operations. Lead operation: List All Connections. Self-contained Naftiko capability covering one Tanium business surface.

Run with Naftiko TaniumConnections

What You Can Do

GET
Listconnections — List All Connections
/v1/plugin/products/connect/v1/connections
POST
Createconnection — Create A New Connection
/v1/plugin/products/connect/v1/connections
GET
Getconnection — Get A Connection By ID
/v1/plugin/products/connect/v1/connections/{connectionid}
PUT
Updateconnection — Update A Connection
/v1/plugin/products/connect/v1/connections/{connectionid}
DELETE
Deleteconnection — Delete A Connection
/v1/plugin/products/connect/v1/connections/{connectionid}
PUT
Disableconnection — Disable A Connection
/v1/plugin/products/connect/v1/connections/{connectionid}/disable
PUT
Enableconnection — Enable A Connection
/v1/plugin/products/connect/v1/connections/{connectionid}/enable
POST
Runconnection — Run A Connection On Demand
/v1/plugin/products/connect/v1/connections/{connectionid}/run

MCP Tools

list-all-connections

List All Connections

read-only idempotent
create-new-connection

Create A New Connection

get-connection-id

Get A Connection By ID

read-only idempotent
update-connection

Update A Connection

idempotent
delete-connection

Delete A Connection

idempotent
disable-connection

Disable A Connection

idempotent
enable-connection

Enable A Connection

idempotent
run-connection-demand

Run A Connection On Demand

Capability Spec

connect-connections.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tanium Connect API — Connections
  description: 'Tanium Connect API — Connections. 8 operations. Lead operation: List All Connections. Self-contained Naftiko
    capability covering one Tanium business surface.'
  tags:
  - Tanium
  - Connections
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TANIUM_API_KEY: TANIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-connections
    baseUri: https://{tanium_server}
    description: Tanium Connect API — Connections business capability. Self-contained, no shared references.
    resources:
    - name: plugin-products-connect-v1-connections
      path: /plugin/products/connect/v1/connections
      operations:
      - name: listconnections
        method: GET
        description: List All Connections
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Maximum number of connections to return
        - name: offset
          in: query
          type: integer
          description: Number of connections to skip for pagination
      - name: createconnection
        method: POST
        description: Create A New Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: plugin-products-connect-v1-connections-connectionId
      path: /plugin/products/connect/v1/connections/{connectionId}
      operations:
      - name: getconnection
        method: GET
        description: Get A Connection By ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection
          required: true
      - name: updateconnection
        method: PUT
        description: Update A Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteconnection
        method: DELETE
        description: Delete A Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection to delete
          required: true
    - name: plugin-products-connect-v1-connections-connectionId-disable
      path: /plugin/products/connect/v1/connections/{connectionId}/disable
      operations:
      - name: disableconnection
        method: PUT
        description: Disable A Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection
          required: true
    - name: plugin-products-connect-v1-connections-connectionId-enable
      path: /plugin/products/connect/v1/connections/{connectionId}/enable
      operations:
      - name: enableconnection
        method: PUT
        description: Enable A Connection
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection
          required: true
    - name: plugin-products-connect-v1-connections-connectionId-run
      path: /plugin/products/connect/v1/connections/{connectionId}/run
      operations:
      - name: runconnection
        method: POST
        description: Run A Connection On Demand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connectionId
          in: path
          type: integer
          description: Unique identifier of the connection to run
          required: true
    authentication:
      type: apikey
      key: session
      value: '{{env.TANIUM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: connect-connections-rest
    port: 8080
    description: REST adapter for Tanium Connect API — Connections. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/plugin/products/connect/v1/connections
      name: plugin-products-connect-v1-connections
      description: REST surface for plugin-products-connect-v1-connections.
      operations:
      - method: GET
        name: listconnections
        description: List All Connections
        call: connect-connections.listconnections
        with:
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createconnection
        description: Create A New Connection
        call: connect-connections.createconnection
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plugin/products/connect/v1/connections/{connectionid}
      name: plugin-products-connect-v1-connections-connectionid
      description: REST surface for plugin-products-connect-v1-connections-connectionId.
      operations:
      - method: GET
        name: getconnection
        description: Get A Connection By ID
        call: connect-connections.getconnection
        with:
          connectionId: rest.connectionId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateconnection
        description: Update A Connection
        call: connect-connections.updateconnection
        with:
          connectionId: rest.connectionId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteconnection
        description: Delete A Connection
        call: connect-connections.deleteconnection
        with:
          connectionId: rest.connectionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plugin/products/connect/v1/connections/{connectionid}/disable
      name: plugin-products-connect-v1-connections-connectionid-disable
      description: REST surface for plugin-products-connect-v1-connections-connectionId-disable.
      operations:
      - method: PUT
        name: disableconnection
        description: Disable A Connection
        call: connect-connections.disableconnection
        with:
          connectionId: rest.connectionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plugin/products/connect/v1/connections/{connectionid}/enable
      name: plugin-products-connect-v1-connections-connectionid-enable
      description: REST surface for plugin-products-connect-v1-connections-connectionId-enable.
      operations:
      - method: PUT
        name: enableconnection
        description: Enable A Connection
        call: connect-connections.enableconnection
        with:
          connectionId: rest.connectionId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plugin/products/connect/v1/connections/{connectionid}/run
      name: plugin-products-connect-v1-connections-connectionid-run
      description: REST surface for plugin-products-connect-v1-connections-connectionId-run.
      operations:
      - method: POST
        name: runconnection
        description: Run A Connection On Demand
        call: connect-connections.runconnection
        with:
          connectionId: rest.connectionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-connections-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tanium Connect API — Connections. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-connections
      description: List All Connections
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-connections.listconnections
      with:
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: create-new-connection
      description: Create A New Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connect-connections.createconnection
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-connection-id
      description: Get A Connection By ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-connections.getconnection
      with:
        connectionId: tools.connectionId
      outputParameters:
      - type: object
        mapping: $.
    - name: update-connection
      description: Update A Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: connect-connections.updateconnection
      with:
        connectionId: tools.connectionId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-connection
      description: Delete A Connection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: connect-connections.deleteconnection
      with:
        connectionId: tools.connectionId
      outputParameters:
      - type: object
        mapping: $.
    - name: disable-connection
      description: Disable A Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: connect-connections.disableconnection
      with:
        connectionId: tools.connectionId
      outputParameters:
      - type: object
        mapping: $.
    - name: enable-connection
      description: Enable A Connection
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: connect-connections.enableconnection
      with:
        connectionId: tools.connectionId
      outputParameters:
      - type: object
        mapping: $.
    - name: run-connection-demand
      description: Run A Connection On Demand
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connect-connections.runconnection
      with:
        connectionId: tools.connectionId
      outputParameters:
      - type: object
        mapping: $.