Docs/MCP Tools/submit_asset_review
MCP Toolsubmit_asset_reviewScope: reviews:write

Submit Asset Review

Publish a star rating and written testimonial review for an owned asset.

Description

Submit Asset Review publishes verified feedback for an asset owned in the user's library. The server verifies that the user holds an active entitlement before publishing, ensuring that all Krafto reviews are from genuine, verified creators.

AI Agent Guidance & Best Practices

Verify that the rating is an integer between 1 and 5 and confirm the text feedback with the user before publishing.

Input Arguments

3 parameters
ParameterTypeRequiredDefaultDescription
assetIdstringRequiredThe unique catalog asset identifier to review.
ratingnumberRequiredStar rating integer from 1 (poor) to 5 (excellent).
commentstringRequiredWritten testimonial explaining the user's experience with the asset.

Request Example

{
  "jsonrpc": "2.0",
  "id": "call_17",
  "method": "tools/call",
  "params": {
    "name": "submit_asset_review",
    "arguments": {
      "assetId": "ast_neon_matrix",
      "rating": 5,
      "comment": "Exceptional quality font family!"
    }
  }
}

Response Schema Example

application/json
{
  "success": true,
  "message": "Review published."
}