Docs/MCP Tools/get_asset_details
MCP Toolget_asset_detailsScope: catalog:read

Get Asset Details

Retrieve complete technical specifications, commercial licensing terms, vendor attribution, and format listings for a single asset.

Description

Get Asset Details provides comprehensive technical and legal intelligence for a specific catalog asset by its unique asset identifier. Unlike the lightweight cards returned by Search Assets, this tool returns granular technical properties including exact file formats (.gltf, .fbx, .blend, .otf, .ttf, .woff2, .fig, .aep), polygon counts, texture resolutions, audio sample rates, total archive size in bytes, author biography, and licensing entitlements. Autonomous agents use this tool to confirm format compatibility with the user's host environment (e.g., verifying that a 3D asset provides GLTF format before loading into a Three.js / React Three Fiber scene, or verifying that a font includes WOFF2 files for Next.js web typography) and to review commercial usage rights before purchasing.

AI Agent Guidance & Best Practices

Execute get_asset_details after search_assets whenever you need to verify software compatibility (such as Blender vs. Maya, or Figma vs. React) or inspect exact commercial license permissions before recommending purchase.

Input Arguments

1 parameters
ParameterTypeRequiredDefaultDescription
assetIdstringRequiredThe unique catalog identifier of the asset (e.g., 'ast_neon_matrix').

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_02",
  "method": "tools/call",
  "params": {
    "name": "get_asset_details",
    "arguments": {
      "assetId": "ast_neon_matrix"
    }
  }
}

Response Schema Example

application/json
{
  "id": "ast_neon_matrix",
  "title": "Neon Matrix Display Typeface",
  "description": "A high-precision sci-fi display font with 6 weights, stylistic alternates, and variable glyph support.",
  "vendor": {
    "id": "vnd_981",
    "name": "CyberFont Labs",
    "verified": true
  },
  "pricing": {
    "inr": 499,
    "usd": 6,
    "freeForTiers": [
      "pro",
      "vip"
    ]
  },
  "formats": [
    ".otf",
    ".ttf",
    ".woff2"
  ],
  "filesCount": 12,
  "fileSizeBytes": 1458920,
  "license": {
    "type": "Standard Commercial",
    "unlimitedClientProjects": true,
    "broadcastReady": false
  }
}