Tanium · Capability

Tanium Connect API — Sources

Tanium Connect API — Sources. 2 operations. Lead operation: List Available Data Sources. Self-contained Naftiko capability covering one Tanium business surface.

Run with Naftiko TaniumSources

What You Can Do

GET
Listsources — List Available Data Sources
/v1/plugin/products/connect/v1/sources
GET
Getsource — Get A Data Source By ID
/v1/plugin/products/connect/v1/sources/{sourceid}

MCP Tools

list-available-data-sources

List Available Data Sources

read-only idempotent
get-data-source-id

Get A Data Source By ID

read-only idempotent

Capability Spec

connect-sources.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tanium Connect API — Sources
  description: 'Tanium Connect API — Sources. 2 operations. Lead operation: List Available Data Sources. Self-contained Naftiko
    capability covering one Tanium business surface.'
  tags:
  - Tanium
  - Sources
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TANIUM_API_KEY: TANIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-sources
    baseUri: https://{tanium_server}
    description: Tanium Connect API — Sources business capability. Self-contained, no shared references.
    resources:
    - name: plugin-products-connect-v1-sources
      path: /plugin/products/connect/v1/sources
      operations:
      - name: listsources
        method: GET
        description: List Available Data Sources
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: plugin-products-connect-v1-sources-sourceId
      path: /plugin/products/connect/v1/sources/{sourceId}
      operations:
      - name: getsource
        method: GET
        description: Get A Data Source By ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sourceId
          in: path
          type: integer
          description: Unique identifier of the data source
          required: true
    authentication:
      type: apikey
      key: session
      value: '{{env.TANIUM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: connect-sources-rest
    port: 8080
    description: REST adapter for Tanium Connect API — Sources. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/plugin/products/connect/v1/sources
      name: plugin-products-connect-v1-sources
      description: REST surface for plugin-products-connect-v1-sources.
      operations:
      - method: GET
        name: listsources
        description: List Available Data Sources
        call: connect-sources.listsources
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/plugin/products/connect/v1/sources/{sourceid}
      name: plugin-products-connect-v1-sources-sourceid
      description: REST surface for plugin-products-connect-v1-sources-sourceId.
      operations:
      - method: GET
        name: getsource
        description: Get A Data Source By ID
        call: connect-sources.getsource
        with:
          sourceId: rest.sourceId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-sources-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tanium Connect API — Sources. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-available-data-sources
      description: List Available Data Sources
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-sources.listsources
      outputParameters:
      - type: object
        mapping: $.
    - name: get-data-source-id
      description: Get A Data Source By ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-sources.getsource
      with:
        sourceId: tools.sourceId
      outputParameters:
      - type: object
        mapping: $.