mitigation

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

Mitigation.

Parameters

NameTypeRequiredDescription
idstringyes
domainstringno

Example call

Arguments

{
  "id": "M1047"
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "id": "M1047",
  "domain": "enterprise-attack"
}

Response shape

FieldTypeDescription
typestringSTIX object type
idstringSTIX object ID
namestringMitigation name
descriptionstringMitigation 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": "Mitigation name"
    },
    "description": {
      "type": "string",
      "description": "Mitigation 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