MCP Tool
get_asset_reviewsScope: catalog:readGet Asset Reviews
Read verified customer reviews, star ratings, and community feedback for an asset.
Description
Get Asset Reviews fetches authentic reviews and ratings left by verified buyers. It returns average star ratings (1 to 5 stars), total review counts, verified purchaser indicators, feedback comments, and creator replies. This tool allows AI assistants to provide unbiased quality assessments when a user asks about the reliability, mesh topology quality, or font rendering accuracy of a product.
AI Agent Guidance & Best Practices
Check asset reviews when a user asks for feedback on asset quality, usability in real projects, or compatibility issues.
Input Arguments
2 parameters| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| assetId | string | Required | — | The unique catalog asset identifier to fetch reviews for. |
| limit | number | Optional | 10 | Maximum number of review entries to return (min: 1, max: 50). |
Request Example
{
"jsonrpc": "2.0",
"id": "call_16",
"method": "tools/call",
"params": {
"name": "get_asset_reviews",
"arguments": {
"assetId": "ast_neon_matrix"
}
}
}Response Schema Example
application/json
{
"averageRating": 4.9,
"totalReviews": 38,
"reviews": [
{
"author": "Maya Lin",
"rating": 5,
"comment": "Flawless kerning and stunning neon stylistic alternates. Works seamlessly in Figma and Next.js.",
"date": "2026-03-01T12:00:00Z"
}
]
}