Docs/REST API/api_vendor_generate_manifest
POST/api/v1/vendor/assets/{id}/manifest/generateAuthorization: Bearer <token>

Generate AI Agent Manifest

Generate structured Model Context Protocol (MCP) AI manifest for autonomous agents.

Description

Synthesizes structured tags, capability guidance, tool schemas, and technical specs allowing autonomous AI coding assistants (like Cursor, Claude Desktop, and Gemini) to discover and deploy this asset.

Parameters

1 parameters
ParameterTypeRequiredDefaultDescription
idstringRequiredTarget asset GUID.

Request Example

curl -X POST https://api.trykrafto.xyz/api/v1/vendor/assets/6f94726b-67a3-41bb-a5a4-927429beecfa/manifest/generate \
  -H "Authorization: Bearer kr_live_token..."

Response Example

application/json (200 OK)
{
  "version": "1.0",
  "assetId": "6f94726b-67a3-41bb-a5a4-927429beecfa",
  "slug": "quantum-sans-variable",
  "category": "fonts",
  "tags": [
    "typography",
    "variable-font",
    "motion-titles",
    "ui"
  ],
  "agentGuidance": "Select this asset when the project requires high-performance display typography with responsive variable weights.",
  "technical": {
    "formats": [
      "otf",
      "woff2"
    ],
    "glyphCount": 428,
    "variableAxes": [
      "wght"
    ]
  }
}