Skip to main content
Glama

Create paid render quote

fvs_create_paid_render_quote

Create a no-account Link payment quote for an FVS render.

The backend returns HTTP 402 payment details as data: `payment_url`,
`status_url`, `claim_token`, `amount_cents`, `currency`, and a raw
`www_authenticate` challenge. Pay `payment_url` with Link's MPP flow, then
poll with fvs_get_paid_render_status. Local file uploads are not available
in paid quote mode; use public HTTPS `upload_urls` when assets are needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
requestYesRequired render request object used for the paid quote. Include name. project_mode must be one of scene, music, or custom. Use assets[].purpose for asset intent. Usually include screenplay, instructions, shot_count, duration, and resolution.
upload_urlsNoOptional public HTTPS reference asset URLs. Each object can include url and filename; filename should match request.assets[].filename.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • changedInput schema / $defs / RenderAssetPayload / properties / purpose / description
      Previous value: -"Optional guidance for how this asset should be used, such as character_reference, location_reference, logo_reference, style_reference, music_reference, or document_reference."New value: +"Optional guidance for how this asset should be used, such as character_reference, location_reference, logo_reference, style_reference, music_reference, or document_reference. Use this field for asset intent."
    • changedInput schema / properties / request / description
      Previous value: -"Required render request object used for the paid quote. Include at least name, and usually project_mode, screenplay, instructions, shot_count, duration, and resolution."New value: +"Required render request object used for the paid quote. Include name. project_mode must be one of scene, music, or custom. Use assets[].purpose for asset intent. Usually include screenplay, instructions, shot_count, duration, and resolution."
  2. Changed3 schema fields changed
    • addedInput schema / $defs / RenderAssetPayload / properties / purpose
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Optional guidance for how this asset should be used, such as character_reference, location_reference, logo_reference, style_reference, music_reference, or document_reference.",
      +  "title": "Purpose"
      +}
    • removedInput schema / $defs / RenderAssetPayload / properties / role
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "description": "Optional role describing how the asset should guide the render.",
      -  "title": "Role"
      -}
    • addedInput schema / $defs / RenderRequestPayload / properties / project_mode / enum
      Added value: +[
      +  "scene",
      +  "music",
      +  "custom"
      +]
  3. Changed8 schema fields changed
    • addedInput schema / $defs
      Added value: +{
      +  "RenderAssetPayload": {
      +    "additionalProperties": true,
      +    "properties": {
      +      "filename": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Basename of an uploaded or referenced asset. When upload_urls is used, this must match an upload_urls filename or URL basename.",
      +        "title": "Filename"
      +      },
      +      "label": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Short label for the asset, such as Character, Logo, or Reference.",
      +        "title": "Label"
      +      },
      +      "role": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Optional role describing how the asset should guide the render.",
      +        "title": "Role"
      +      }
      +    },
      +    "title": "RenderAssetPayload",
      +    "type": "object"
      +  },
      +  "RenderRequestPayload": {
      +    "additionalProperties": true,
      +    "properties": {
      +      "assets": {
      +        "anyOf": [
      +          {
      +            "items": {
      +              "$ref": "#/$defs/RenderAssetPayload"
      +            },
      +            "type": "array"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Optional reference assets that correspond to uploaded or public upload_urls.",
      +        "title": "Assets"
      +      },
      +      "instructions": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Additional direction for continuity, style, camera movement, subtitles, audio, or constraints.",
      +        "title": "Instructions"
      +      },
      +      "name": {
      +        "description": "Required project name for the Future Video Studio render.",
      +        "title": "Name",
      +        "type": "string"
      +      },
      +      "project_mode": {
      +        "default": "scene",
      +        "description": "Render mode: scene for cinematic scenes, music for music-first videos, or custom for advanced requests.",
      +        "title": "Project Mode",
      +        "type": "string"
      +      },
      +      "scene_target_duration_seconds": {
      +        "anyOf": [
      +          {
      +            "maximum": 600,
      +            "minimum": 4,
      +            "type": "number"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Target total scene duration in seconds.",
      +        "title": "Scene Target Duration Seconds"
      +      },
      +      "screenplay": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Shot-by-shot creative brief or script describing what should happen in the video.",
      +        "title": "Screenplay"
      +      },
      +      "shot_count": {
      +        "anyOf": [
      +          {
      +            "maximum": 64,
      +            "minimum": 1,
      +            "type": "integer"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Target number of shots or clips to plan for the render.",
      +        "title": "Shot Count"
      +      },
      +      "video_resolution": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Requested output resolution, such as 720p or 1080p.",
      +        "title": "Video Resolution"
      +      },
      +      "visual_style_preset": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Optional FVS visual style preset, such as realistic_cinematic.",
      +        "title": "Visual Style Preset"
      +      }
      +    },
      +    "required": [
      +      "name"
      +    ],
      +    "title": "RenderRequestPayload",
      +    "type": "object"
      +  },
      +  "UploadUrlPayload": {
      +    "additionalProperties": true,
      +    "properties": {
      +      "filename": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Optional basename used to match request.assets[].filename.",
      +        "title": "Filename"
      +      },
      +      "url": {
      +        "description": "Public HTTPS URL for a reference asset.",
      +        "title": "Url",
      +        "type": "string"
      +      }
      +    },
      +    "required": [
      +      "url"
      +    ],
      +    "title": "UploadUrlPayload",
      +    "type": "object"
      +  }
      +}
    • addedInput schema / properties / request / $ref
      Added value: +"#/$defs/RenderRequestPayload"
    • removedInput schema / properties / request / additionalProperties
      Removed value: -true
    • addedInput schema / properties / request / description
      Added value: +"Required render request object used for the paid quote. Include at least name, and usually project_mode, screenplay, instructions, shot_count, duration, and resolution."
    • removedInput schema / properties / request / title
      Removed value: -"Request"
    • removedInput schema / properties / request / type
      Removed value: -"object"
    • changedInput schema / properties / upload_urls / anyOf
      Previous value: -[
      -  {
      -    "items": {
      -      "anyOf": [
      -        {
      -          "type": "string"
      -        },
      -        {
      -          "additionalProperties": {
      -            "type": "string"
      -          },
      -          "type": "object"
      -        }
      -      ]
      -    },
      -    "type": "array"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "items": {
      +      "anyOf": [
      +        {
      +          "type": "string"
      +        },
      +        {
      +          "$ref": "#/$defs/UploadUrlPayload"
      +        }
      +      ]
      +    },
      +    "type": "array"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • addedInput schema / properties / upload_urls / description
      Added value: +"Optional public HTTPS reference asset URLs. Each object can include url and filename; filename should match request.assets[].filename."
  4. Changed1 schema field changed
    • removedInput schema / properties / base_url
      Removed value: -{
      -  "anyOf": [
      -    {
      -      "type": "string"
      -    },
      -    {
      -      "type": "null"
      -    }
      -  ],
      -  "default": null,
      -  "title": "Base Url"
      -}
  5. First observed

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses key behaviors beyond annotations: the backend returns HTTP 402 payment details (payment_url, status_url, claim_token, etc.), requires an external payment step via Link's MPP flow, and disallows local file uploads. This adds meaningful context to the non-idempotent, non-read-only annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences in a logical order: purpose, payment flow, and asset constraint. Every sentence adds value with no repetition or fluff, and the key purpose is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema and annotations, the description adequately covers the workflow: creation, payment, polling, and asset handling. It references the necessary sibling tool for follow-up and does not need to explain return values. Slightly more detail on when to use this vs. fvs_submit_render would make it complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

While the schema already provides 100% parameter coverage, the description adds important semantics for upload_urls: local uploads are not supported and public HTTPS URLs must be used for assets. This clarifies the parameter's purpose beyond the schema description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool creates a 'no-account Link payment quote for an FVS render,' using a specific verb and resource. It also differentiates from sibling tools like fvs_submit_render by focusing on the payment quote aspect and mentions polling with fvs_get_paid_render_status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit guidance: pay the returned payment_url and poll with fvs_get_paid_render_status, and use public HTTPS upload_urls since local file uploads are not available. It lacks an explicit contrast with fvs_submit_render but gives clear usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.