Mint/mcp

mint:read

Get Model Animation

get_model_animation

Gets normalized status for an animation batch or clip without exposing raw animation files.

Parameters

Input schema generated from the registry. Required parameters are tagged.

  • target_typerequired

    "asset_pack_animation_batch" | "model_animation_batch" | "model_animation_clip"

  • target_idrequired

    string

  • contextrequired

    string

    Describe the user's goal and why this tool helps in 15-25 words. Do not include credentials, personal data, identifiers, URLs, emails, or account addresses.

Example request

{
  "target_type": "model_animation_batch",
  "target_id": "mabwalkcycle123"
}

Example response

{
  "type": "model_animation",
  "targetType": "model_animation_batch",
  "id": "mabwalkcycle123",
  "status": "succeeded",
  "terminal": true,
  "chatId": "j572z3a4b5c6d7e8f9g0h1i2j3",
  "chatUrl": "https://mint.gg/chat/j572z3a4b5c6d7e8f9g0h1i2j3",
  "modelId": "mn785pg330fdx30ty4achjv80985ne5z",
  "displayName": "Hero Runner",
  "actionIds": [
    112
  ],
  "counts": {
    "clipCount": 1,
    "succeededCount": 1,
    "failedCount": 0,
    "runningCount": 0,
    "queuedCount": 0
  },
  "artifactAvailability": {
    "hasRiggedCharacterGlb": true,
    "hasRiggedCharacterFbx": true,
    "hasClipArtifacts": true
  },
  "clips": [
    {
      "id": "macwalkcycle456",
      "batchId": "mabwalkcycle123",
      "modelId": "mn785pg330fdx30ty4achjv80985ne5z",
      "actionId": 112,
      "displayName": "Idle",
      "status": "succeeded",
      "artifactAvailability": {
        "hasAnimationGlb": true,
        "hasAnimationFbx": true
      }
    }
  ]
}

Use cases

  • Check a model animation batch returned by animate_generated_model.
  • Recover clip IDs and action IDs without exposing raw provider URLs.