MCP Tool
submit_asset_reviewScope: reviews:writeSubmit 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| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| assetId | string | Required | — | The unique catalog asset identifier to review. |
| rating | number | Required | — | Star rating integer from 1 (poor) to 5 (excellent). |
| comment | string | Required | — | Written 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."
}