technique

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

Technique by ATT&CK id.

Parameters

NameTypeRequiredDescription
idstringyes
domainstringno

Example call

Arguments

{
  "id": "T1566"
}

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":"technique","arguments":{"id":"T1566"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('technique', {
  "id": "T1566"
});

More examples

{
  "id": "T1566.002",
  "domain": "enterprise-attack"
}

Response shape

FieldTypeDescription
typestringSTIX object type
idstringSTIX object ID
namestringTechnique name
descriptionstringTechnique 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": "Technique name"
    },
    "description": {
      "type": "string",
      "description": "Technique 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