domains

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

List loaded STIX bundles.

Example call

Arguments

{}

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":"domains","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('domains', {});

Response shape

Always returns: domains

FieldTypeDescription
domainsarrayAvailable MITRE ATT&CK domains
Full JSON Schema
{
  "type": "object",
  "properties": {
    "domains": {
      "type": "array",
      "description": "Available MITRE ATT&CK domains",
      "items": {
        "type": "string",
        "enum": [
          "enterprise-attack",
          "mobile-attack",
          "ics-attack"
        ]
      }
    }
  },
  "required": [
    "domains"
  ]
}

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