{
  "info": {
    "name": "Triggercmd — mcp.ai",
    "description": "REST API for the Triggercmd MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/triggercmd",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "triggercmd_list_commands_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/commands/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "commands",
            "v2"
          ]
        },
        "description": "Tool to list all available commands for the authenticated user. Use when you need to retrieve all commands configured on your computers.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "triggercmd_list_computers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/computers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "computers"
          ]
        },
        "description": "Tool to list all computers associated with your TriggerCMD account. Use after authenticating with your token to retrieve connected machines.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "triggercmd_list_panel_buttons",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/panel/buttons",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "panel",
            "buttons"
          ]
        },
        "description": "Tool to retrieve all panel buttons configured in your TriggerCMD account. Use when you need to browse available panel buttons before triggering them.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "triggercmd_trigger_command",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trigger/command",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trigger",
            "command"
          ]
        },
        "description": "Tool to trigger a specified command on a target computer. Use when you want to remotely execute a pre-configured command after authentication. Values for `computer` and `command` must exactly match id",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"params\": \"\",\n  \"command\": \"\",\n  \"computer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "triggercmd_trigger_panel_button",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/trigger/panel/button",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "trigger",
            "panel",
            "button"
          ]
        },
        "description": "Tool to trigger a specific panel button. Panels allow grouping related commands for easier organization and triggering. Use when you want to execute a command that's part of a panel configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"panel\": \"\",\n  \"button\": \"\",\n  \"params\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}