Mint/mcp

mint:generate:approve

Get Asset Artifact Manifest

get_asset_artifact_manifest

Returns a ready-to-copy manifest with durable URLs, suggested paths, and loader hints for all downloadable asset artifacts.

Parameters

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

  • asset_typerequired

    "world" | "model" | "asset_pack" | "material" | "image" | "audio"

  • asset_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

{
  "asset_type": "model",
  "asset_id": "mn785pg330fdx30ty4achjv80985ne5z"
}

Example response

{
  "manifestVersion": 1,
  "source": {
    "kind": "asset",
    "assetType": "model",
    "id": "mn785pg330fdx30ty4achjv80985ne5z"
  },
  "mintUrl": "https://mint.gg/0x1234/mn785pg330fdx30ty4achjv80985ne5z",
  "artifacts": [
    {
      "id": "original_glb",
      "label": "Original GLB",
      "kind": "original_model",
      "format": "glb",
      "filename": "blush-cloud-loveseat-ne5z-original.glb",
      "contentType": "model/gltf-binary",
      "downloadUrl": "https://cdn.mint.gg/glb/blush-cloud-loveseat-ne5z-original.glb",
      "suggestedPath": "public/models/blush-cloud-loveseat-ne5z-original.glb",
      "loaderHint": "gltf"
    }
  ],
  "presentationHint": "Use each suggestedPath as a ready project-local destination, or use downloadUrl directly in R3F loaders, browser audio, material map setup, or curl."
}

Use cases

  • Import every file an asset pack, material, model, or audio asset exposes in one call.
  • Give coding agents stable project paths and loader hints without scraping internal URLs.

Related Mint workflow

AI 3D assets for Three.js