File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ export function registerRenderItem(server: McpServer) {
3939 const Output = {
4040 // Successful response
4141 renderId : z . string ( ) . optional ( ) . describe ( "Server-assigned render job ID." ) ,
42+ renderDetailsPageUrl : z
43+ . string ( )
44+ . optional ( )
45+ . describe ( "URL to the render details page." ) ,
4246 projectDesignId : z
4347 . string ( )
4448 . describe ( "Parent identifier (projectId or designId)." ) ,
@@ -73,6 +77,7 @@ How to use:
7377- Call this only once the user approved all parameters for the chosen template/variant.
7478
7579Guidance:
80+ - Never submit more than one render with the same parameters, unless the user explicitly requests it.
7681- Use parameters to customize the render.
7782- All mandatory parameters must be provided.
7883- Provide values for optional parameters if it makes sense.
@@ -148,6 +153,7 @@ Use when:
148153 // Successful submission
149154 const output = {
150155 renderId : render . id ,
156+ renderDetailsPageUrl : `https://app.test.plainlyvideos.com/dashboard/renders/${ render . id } ` ,
151157 projectDesignId : render . projectId ,
152158 templateVariantId : render . templateId ,
153159 projectDesignName : render . projectName ,
You can’t perform that action at this time.
0 commit comments