tactic

Pack: mitre-attck · Endpoint: https://gateway.pipeworx.io/mitre-attck/mcp

Tactic by id or short name.

Parameters

NameTypeRequiredDescription
id_or_short_namestringyes
domainstringno

Example call

Arguments

{
  "id_or_short_name": "initial-access"
}

curl

curl -X POST https://gateway.pipeworx.io/mitre-attck/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tactic","arguments":{"id_or_short_name":"initial-access"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('tactic', {
  "id_or_short_name": "initial-access"
});

More examples

{
  "id_or_short_name": "TA0001",
  "domain": "enterprise-attack"
}

Response shape

FieldTypeDescription
typestringSTIX object type
idstringSTIX object ID
namestringTactic name
x_mitre_shortnamestringTactic short name
descriptionstringTactic description
external_referencesarrayExternal references including ATT&CK ID
Full JSON Schema
{
  "type": [
    "object",
    "null"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "STIX object type"
    },
    "id": {
      "type": "string",
      "description": "STIX object ID"
    },
    "name": {
      "type": "string",
      "description": "Tactic name"
    },
    "x_mitre_shortname": {
      "type": "string",
      "description": "Tactic short name"
    },
    "description": {
      "type": "string",
      "description": "Tactic description"
    },
    "external_references": {
      "type": "array",
      "description": "External references including ATT&CK ID",
      "items": {
        "type": "object"
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "mitre-attck": {
      "url": "https://gateway.pipeworx.io/mitre-attck/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026