VirusTotal · Capability

VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics

VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics. 3 operations. Lead operation: Get an Attack Tactic Object. Self-contained Naftiko capability covering one VirusTotal business surface.

Run with Naftiko VirusTotalIoC InvestigationAttack Tactics

What You Can Do

GET
Attacktacticsid — VirusTotal Get an Attack Tactic Object
/v1/attack_tactics/{id}
GET
Attacktacticsidrelationshipsrelationship — VirusTotal Get Object Descriptors Related to an Attack Tactic
/v1/attack_tactics/{id}/relationships/{relationship}
GET
Attacktacticsidrelationship — VirusTotal Get Objects Related to an Attack Tactic
/v1/attack_tactics/{id}/{relationship}

MCP Tools

get-attack-tactic-object

VirusTotal Get an Attack Tactic Object

read-only idempotent
get-object-descriptors-related-attack

VirusTotal Get Object Descriptors Related to an Attack Tactic

read-only idempotent
get-objects-related-attack-tactic

VirusTotal Get Objects Related to an Attack Tactic

read-only idempotent

Capability Spec

ioc-investigation-ioc-investigation-attack-tactics.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics
  description: 'VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics. 3 operations. Lead operation: Get an Attack Tactic Object. Self-contained Naftiko capability covering one VirusTotal
    business surface.'
  tags:
  - VirusTotal
  - IoC Investigation
  - Attack Tactics
  created: '2026-05-29'
  modified: '2026-05-29'
binds:
- namespace: env
  keys:
    VIRUSTOTAL_API_KEY: VIRUSTOTAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: ioc-investigation-ioc-investigation-attack-tactics
    baseUri: https://www.virustotal.com/api/v3
    description: VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics. Self-contained, no shared references.
    authentication:
      type: apikey
      key: x-apikey
      value: '{{env.VIRUSTOTAL_API_KEY}}'
      placement: header
    resources:
    - name: attack-tactics-id
      path: /attack_tactics/{id}
      operations:
      - name: attackTacticsid
        method: GET
        description: VirusTotal Get an Attack Tactic Object
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
          description: Attack tactic's ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: attack-tactics-id-relationships-relationship
      path: /attack_tactics/{id}/relationships/{relationship}
      operations:
      - name: attackTacticsidrelationshipsrelationship
        method: GET
        description: VirusTotal Get Object Descriptors Related to an Attack Tactic
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
          description: Attack tactic's ID
        - name: relationship
          in: path
          type: string
          required: true
          description: Relationship name (see [table](ref:object-attack-tactics#relationships))
        - name: limit
          in: query
          type: integer
          required: false
          description: Maximum number of related objects to retrieve
        - name: cursor
          in: query
          type: string
          required: false
          description: Continuation cursor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: attack-tactics-id-relationship
      path: /attack_tactics/{id}/{relationship}
      operations:
      - name: attackTacticsidrelationship
        method: GET
        description: VirusTotal Get Objects Related to an Attack Tactic
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
          description: Attack tactic's ID
        - name: relationship
          in: path
          type: string
          required: true
          description: Relationship name (see [table](ref:object-attack-tactics#relationships))
        - name: limit
          in: query
          type: integer
          required: false
          description: Maximum number of related objects to retrieve
        - name: cursor
          in: query
          type: string
          required: false
          description: Continuation cursor
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: ioc-investigation-ioc-investigation-attack-tactics-rest
    port: 8080
    description: REST adapter for VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics. One Spectral-compliant resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/attack_tactics/{id}
      name: attack-tactics-id
      description: REST surface for /attack_tactics/{id}.
      operations:
      - method: GET
        name: attackTacticsid
        description: VirusTotal Get an Attack Tactic Object
        call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsid
        outputParameters:
        - type: object
          mapping: $.
        with:
          id: rest.id
    - path: /v1/attack_tactics/{id}/relationships/{relationship}
      name: attack-tactics-id-relationships-relationship
      description: REST surface for /attack_tactics/{id}/relationships/{relationship}.
      operations:
      - method: GET
        name: attackTacticsidrelationshipsrelationship
        description: VirusTotal Get Object Descriptors Related to an Attack Tactic
        call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsidrelationshipsrelationship
        outputParameters:
        - type: object
          mapping: $.
        with:
          id: rest.id
          relationship: rest.relationship
          limit: rest.limit
          cursor: rest.cursor
    - path: /v1/attack_tactics/{id}/{relationship}
      name: attack-tactics-id-relationship
      description: REST surface for /attack_tactics/{id}/{relationship}.
      operations:
      - method: GET
        name: attackTacticsidrelationship
        description: VirusTotal Get Objects Related to an Attack Tactic
        call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsidrelationship
        outputParameters:
        - type: object
          mapping: $.
        with:
          id: rest.id
          relationship: rest.relationship
          limit: rest.limit
          cursor: rest.cursor
  - type: mcp
    namespace: ioc-investigation-ioc-investigation-attack-tactics-mcp
    port: 9090
    transport: http
    description: MCP adapter for VirusTotal API v3 - IoC Investigation — IoC Investigation - Attack Tactics. One tool per consumed operation, routed inline through this capability's consumes block.
    tools:
    - name: get-attack-tactic-object
      description: VirusTotal Get an Attack Tactic Object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsid
      outputParameters:
      - type: object
        mapping: $.
      with:
        id: tools.id
    - name: get-object-descriptors-related-attack
      description: VirusTotal Get Object Descriptors Related to an Attack Tactic
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsidrelationshipsrelationship
      outputParameters:
      - type: object
        mapping: $.
      with:
        id: tools.id
        relationship: tools.relationship
        limit: tools.limit
        cursor: tools.cursor
    - name: get-objects-related-attack-tactic
      description: VirusTotal Get Objects Related to an Attack Tactic
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: ioc-investigation-ioc-investigation-attack-tactics.attackTacticsidrelationship
      outputParameters:
      - type: object
        mapping: $.
      with:
        id: tools.id
        relationship: tools.relationship
        limit: tools.limit
        cursor: tools.cursor