search_tag

Pack: malwarebazaar · Endpoint: https://gateway.pipeworx.io/malwarebazaar/mcp

Find samples tagged with a string (e.g., “emotet”, “macro”, “exe”).

Parameters

NameTypeRequiredDescription
tagstringyesTag string
limitnumbernoMax results (default 100)

Example call

Arguments

{
  "tag": "emotet"
}

curl

curl -X POST https://gateway.pipeworx.io/malwarebazaar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_tag","arguments":{"tag":"emotet"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('search_tag', {
  "tag": "emotet"
});

More examples

{
  "tag": "macro",
  "limit": 50
}

Response shape

Always returns: query, status, count, samples

FieldTypeDescription
querystringQuery type used (get_taginfo)
statusstring | nullQuery status (ok, no_results, or null)
countnumberNumber of samples returned
samplesarrayArray of samples with matching tag
Full JSON Schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Query type used (get_taginfo)"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Query status (ok, no_results, or null)",
      "enum": [
        "ok",
        "no_results",
        null
      ]
    },
    "count": {
      "type": "number",
      "description": "Number of samples returned"
    },
    "samples": {
      "type": "array",
      "description": "Array of samples with matching tag",
      "items": {
        "type": "object"
      }
    }
  },
  "required": [
    "query",
    "status",
    "count",
    "samples"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "malwarebazaar": {
      "url": "https://gateway.pipeworx.io/malwarebazaar/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026