Tanium · Capability

Tanium Platform REST API — Actions

Tanium Platform REST API — Actions. 2 operations. Lead operation: Get An Action Group By Name. Self-contained Naftiko capability covering one Tanium business surface.

Run with Naftiko TaniumActions

What You Can Do

GET
Getactiongroupbyname — Get An Action Group By Name
/v1/api/v2/action-groups/by-name/{name}
POST
Createsavedaction — Create And Execute An Action
/v1/api/v2/saved-actions

MCP Tools

get-action-group-name

Get An Action Group By Name

read-only idempotent
create-and-execute-action

Create And Execute An Action

Capability Spec

platform-rest-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tanium Platform REST API — Actions
  description: 'Tanium Platform REST API — Actions. 2 operations. Lead operation: Get An Action Group By Name. Self-contained
    Naftiko capability covering one Tanium business surface.'
  tags:
  - Tanium
  - Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TANIUM_API_KEY: TANIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: platform-rest-actions
    baseUri: https://{tanium_server}
    description: Tanium Platform REST API — Actions business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-action_groups-by-name-name
      path: /api/v2/action_groups/by-name/{name}
      operations:
      - name: getactiongroupbyname
        method: GET
        description: Get An Action Group By Name
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: path
          type: string
          description: Name of the action group
          required: true
    - name: api-v2-saved_actions
      path: /api/v2/saved_actions
      operations:
      - name: createsavedaction
        method: POST
        description: Create And Execute An Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: session
      value: '{{env.TANIUM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: platform-rest-actions-rest
    port: 8080
    description: REST adapter for Tanium Platform REST API — Actions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v2/action-groups/by-name/{name}
      name: api-v2-action-groups-by-name-name
      description: REST surface for api-v2-action_groups-by-name-name.
      operations:
      - method: GET
        name: getactiongroupbyname
        description: Get An Action Group By Name
        call: platform-rest-actions.getactiongroupbyname
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/saved-actions
      name: api-v2-saved-actions
      description: REST surface for api-v2-saved_actions.
      operations:
      - method: POST
        name: createsavedaction
        description: Create And Execute An Action
        call: platform-rest-actions.createsavedaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: platform-rest-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tanium Platform REST API — Actions. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-action-group-name
      description: Get An Action Group By Name
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: platform-rest-actions.getactiongroupbyname
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: create-and-execute-action
      description: Create And Execute An Action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: platform-rest-actions.createsavedaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.