Generate single or batch PDF reports from Re:port Flow templates through MCP-compatible AI clients.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Reportflow MCP.
authenticateFirst-time / re-authentication
list_templatesList available designs
get_design_parametersFetch the parameter schema for a design
generate_pdf_syncGenerate one PDF (sync returns path; async returns request ID)
generate_pdfs_syncGenerate many PDFs (returns a ZIP)
download_fileDownload artifacts produced by async tools
Official display name: Re:port Flow MCP. Package and implementation identifier: reportflow-mcp. Legacy search aliases: ReportFlow MCP Server and ReportFlow.
An MCP (Model Context Protocol) server that turns your Re:port Flow templates into PDF reports โ invoices, contracts, statements, anything you've designed โ straight from Claude or any other MCP-compatible AI agent.
Agents that should follow a procedure (not just read the protocol) use
skills/re-port-flow/SKILL.md. Copy that
directory into Claude Code / Codex .agents/skills or a Cursor project skill
folder. PDF generation always goes to https://mcp.re-port-flow.com/mcp.
The Hugging Face Space MCP (org card)
is gallery-only โ add it from the Space MCP badge โ Add to MCP tools,
not as a substitute for the product endpoint.
Re:port Flow MCP runs in two ways โ pick whichever matches your client.
Add Re:port Flow as a custom connector pointing at the hosted endpoint:
In Claude (claude.ai) go to Settings โ Connectors โ Add custom connector and paste the URL above. Authentication is handled in-app via OAuth (see Authentication) โ nothing to install locally.
Add the following to your config file (.mcp.json, claude_desktop_config.json, ~/.cursor/mcp.json, etc.):
That's the whole setup. No env vars, no API keys, no secrets to manage.
Same JSON in .vscode/mcp.json.
npx) and a browser available during the first login.Both transports (stdio / Streamable HTTP) serve two MCP protocol generations from a single endpoint:
2026-07-28 (current) โ stateless per-request protocol. Modern clients discover it via server/discover; no session header, requests carry their protocol version in _meta.2025-11-25, 2025-06-18, 2025-03-26, 2024-11-05, 2024-10-07) โ classic initialize handshake, kept for backwards compatibility with existing clients (Claude Desktop, claude.ai custom connectors, Cursor, ChatGPT, n8n, โฆ).Version selection is automatic on both transports: modern clients probe with server/discover, legacy clients keep sending initialize โ no configuration is required on either side, and existing connections keep working unchanged.
When you add the connector, Claude runs the OAuth flow for you: Sign in โ pick a workspace โ consent. Tokens are held by the client โ there's no local keychain or browser step to manage.
After reloading the MCP client, ask the AI:
Authenticate with Re:port Flow
A browser window opens. Sign in โ pick a workspace โ consent, and you're
done. Tokens are stored in your OS keychain (macOS Keychain / Windows
Credential Manager / Linux libsecret), with a chmod-0600 file fallback, and
are refreshed automatically.
Each example below is a prompt you can paste as-is; the AI picks the right tools.
Using the invoice template, create a PDF for Acme Corp totalling $330.
The AI lists designs with list_templates, fetches the parameter schema with
get_design_parameters, fills in the values, and calls generate_pdf_sync.
fileUrl).From the statement template, generate one PDF per customer (Acme $100, Globex $250, Initech $80) and give them to me together.
generate_pdfs_sync writes a single ZIP to your workspace.generate_pdfs_async runs the batch and returns a request id plus
a download URL.Kick off the contract PDF in the background, then download it once it's ready.
The AI calls generate_pdf_async (returns a requestId immediately), then
download_file to save the finished PDF. The batch equivalent is
generate_pdfs_async โ download_zip. These download tools are stdio-only; on
the remote server the sync/async tools already return a fileUrl.
Tip โ natural-language params: on a Sampling-capable client you can ask "draft the params for a $1,000 invoice to A็คพ" and the AI will call
suggest_paramsto turn the brief into a validparamsobject before generating.
I don't have any templates yet โ create an invoice PDF for Acme Corp.
When list_templates is empty, the AI searches the public template gallery
with search_gallery_templates, shows you the candidates, copies your pick
into your workspace with copy_gallery_template, and then proceeds with the
normal flow (get_design_parameters โ generate_pdf_sync). The copy always
lands in the workspace you selected on the OAuth consent screen โ the AI
cannot target any other workspace.
| Command | Purpose |
|---|---|
/generate_pdf | Step-by-step recipe for a single PDF |
/generate_pdfs | Recipe for batch PDF generation |
/reportflow_help | Quick feature tour |
Output location is resolved in this order:
The setup above assumes an MCP client that manages its own connection and login. If you are writing the agent yourself โ Hugging Face Agents, a custom tool loop, or raw HTTP โ the hosted endpoint is open to you directly:
copy_gallery_template is not idempotent;
passthrough values end up in the PDF's metadata).initialize and tools/list work without credentials, so you can discover the
toolset before wiring up authentication. Every tools/call needs a Bearer token.
Re:port Flow is on the Hub at
huggingface.co/reportflow. The Hugging
Face SDKs have no MCP OAuth flow of their own, so fetch a token once with
examples/oauth/get-token.sh and inject it as
an Authorization header โ see
examples/python/hf_mcp_client.py and
examples/javascript/hf-mcp-client.mjs.
| Tool | Purpose |
|---|---|
authenticate | First-time / re-authentication |
list_templates | List available designs |
get_design_parameters | Fetch the parameter schema for a design |
generate_pdf_sync / _async | Generate one PDF (sync returns path; async returns request ID) |
generate_pdfs_sync / _async | Generate many PDFs (returns a ZIP) |
download_file / download_zip | Download artifacts produced by async tools |
suggest_params | Translate a natural-language brief into a params JSON via MCP Sampling (requires a Sampling-capable client) |
search / fetch | ChatGPT connector convention tools (single string argument), closed-world (openWorldHint: false) โ they only read your own workspace's internal template catalog, never the web. search resolves templates by name; fetch returns a template's parameter schema by id. Thin wrappers over list_templates / get_design_parameters so ChatGPT (incl. Plus/Pro without Developer Mode) can discover and inspect templates. |
search_gallery_templates | Search the public template gallery (no auth needed) by keyword/category. Returns candidate templates that are not yet in your workspace โ their slug cannot be used for PDF generation until copied. |
get_gallery_template | Fetch full details of one public gallery template by slug (no auth needed) |
copy_gallery_template | Write tool. Copy a gallery template into the workspace you authorized (the target workspace is fixed by your access token and cannot be passed as an argument). Returns designId + version ready for get_design_parameters / generate_pdf_sync. Each call creates a new design โ it never reuses a previous copy. |
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/re-port-flow-reportflow-mcp)<a href="https://allmcps.com/mcp/re-port-flow-reportflow-mcp"><img src="https://allmcps.com/api/badge/re-port-flow-reportflow-mcp?style=directory" alt="Reportflow MCP on AllMCPs" /></a>