Claude

entry.asset

Fetch the category-aware copy/install asset for a HeyClaude entry without writing local files. Pass assetType (e.g. 'install_command', 'config_snippet') to return only that asset and avoid the full_content/script payloads when you do not need them.

Remote heyclaude/heyclaude

Remote (network-hosted)

Other tools also called entry.asset? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "slug": {
      "type": "string",
      "pattern": "^[a-z0-9-]+$",
      "maxLength": 120,
      "minLength": 1,
      "description": "Slug of the entry to fetch the asset for."
    },
    "category": {
      "type": "string",
      "pattern": "^[a-z0-9-]+$",
      "maxLength": 120,
      "minLength": 1,
      "description": "Category of the entry (e.g. 'mcp', 'skills')."
    },
    "platform": {
      "type": "string",
      "maxLength": 80,
      "minLength": 1,
      "description": "Target platform to tailor the install command or config snippet."
    },
    "assetType": {
      "enum": [
        "full_content",
        "install_command",
        "config_snippet",
        "script",
        "command_syntax",
        "usage",
        "items"
      ],
      "type": "string",
      "description": "Return only this asset type instead of every asset. Use it to avoid paying for the full_content or script payload (up to tens of KB) when you only need, e.g., the install_command or config_snippet."
    }
  }
}
          

Provider

Claude →