Skip to main content
Glama
formfeed-dev

formfeed

Official

Render a document

render

Convert HTML templates or raw HTML to PDF, PNG, JPG, WEBP, DOCX, PPTX, or PDF and get a download URL. Supports Jinja2, Liquid, and Handlebars templates with optional data.

Instructions

Renders a template (with data) or raw HTML to a PDF or image, or a Word or PowerPoint template to DOCX, PPTX or PDF, and returns a download URL. Live keys consume units; test keys render free with a watermark.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
htmlNoRaw HTML instead of a template
waitNoWait for the render to finish (sync renders finish immediately)
engineNoEngine for html that contains template syntax
localeNoBCP 47 tag for helpers and translations, e.g. de-DE
outputNoLeft out, the template decides: PDF for PDF templates and html, its image format for image templates, its default output for Word and PowerPoint templates. Word templates render docx or pdf, PowerPoint templates pptx or pdf
filenameNo
templateNoTemplate slug or tpl_ id

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.7

TDQS

A3.5/5.0
Behavior4/5

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

Annotations only state readOnlyHint=false and idempotentHint=false, leaving the description to carry behavioral context. The description adds useful transparency by noting that live keys consume units, test keys add a watermark, and the tool returns a download URL. It stops short of explaining side effects like resource creation or quota impact, but it adds meaningful value beyond the 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 two sentences, front-loaded with the core operation and output, and wastes no words. It packs the essential purpose, input types, output formats, return value, and billing behavior into a compact, scannable form.

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

Completeness3/5

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

This is a complex 8-parameter tool with no output schema, so the description needs to cover return values and operational call requirements. It explains the download URL and main rendering paths, but it does not state whether a template or html is required, how filename behaves, or how asynchronous renders are retrieved. These gaps leave an agent with some uncertainty before invoking the tool.

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

Parameters3/5

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

Schema description coverage is 75%, so the schema already handles most parameter documentation. The tool description clarifies high-level input modes (template+data vs raw HTML) and output format categories, but it does not add detail for undocumented parameters like data or filename. It is neither harmful nor highly compensatory.

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

Purpose4/5

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

The description clearly states a specific verb and resource: it renders templates or raw HTML into PDFs, images, DOCX, or PPTX, and returns a download URL. It does not explicitly differentiate itself from siblings like get_render or convert_to_pdf, but the output and rendering scope make the core purpose evident.

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

Usage Guidelines2/5

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

The description provides billing-related context (live keys consume units, test keys render with a watermark) but gives no guidance on when to use this tool instead of alternatives such as convert_to_pdf, get_render, or validate_template. It lacks explicit exclusions, prerequisites, or scenario-based routing.

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