software

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

Software/malware (e.g. S0002).

Parameters

NameTypeRequiredDescription
idstringyes
domainstringno

Example call

Arguments

{
  "id": "S0002"
}

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

TypeScript (@pipeworx/sdk)

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

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

More examples

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

Response shape

FieldTypeDescription
typestringSTIX object type (tool or malware)
idstringSTIX object ID
namestringSoftware/malware name
descriptionstringSoftware description
aliasesarrayAlternative names
external_referencesarrayExternal references including ATT&CK ID
Full JSON Schema
{
  "type": [
    "object",
    "null"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "STIX object type (tool or malware)"
    },
    "id": {
      "type": "string",
      "description": "STIX object ID"
    },
    "name": {
      "type": "string",
      "description": "Software/malware name"
    },
    "description": {
      "type": "string",
      "description": "Software description"
    },
    "aliases": {
      "type": "array",
      "description": "Alternative names",
      "items": {
        "type": "string"
      }
    },
    "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