mitigation
Pack: mitre-attck · Endpoint: https://gateway.pipeworx.io/mitre-attck/mcp
Mitigation.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | |
domain | string | no |
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
| Field | Type | Description |
|---|---|---|
type | string | STIX object type |
id | string | STIX object ID |
name | string | Mitigation name |
description | string | Mitigation description |
external_references | array | External 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.