Re:portFlow
OfficialRe:portFlow MCP is a server that generates PDF reports (invoices, contracts, receipts, etc.) from ReportFlow templates via AI agents like Claude, Cursor, or VS Code.
Authentication
Authenticate with ReportFlow via OAuth 2.0 (browser-based login with Authorization Code + PKCE); supports forced re-authentication to reset tokens.
Template Discovery
List all design templates in your workspace (IDs, names, versions, thumbnails).
Retrieve the parameter schema for a specific template to understand required inputs before generating.
PDF Generation
Generate a single PDF synchronously or asynchronously using a design ID and parameters.
Bulk-generate multiple PDFs in one call (sync or async), returned as a ZIP archive.
Use AI sampling to translate natural-language descriptions into structured parameters for generation.
File Download
Download async-generated PDFs or batch ZIP archives to a local path using a
requestId.In remote mode, generation returns download URLs; in stdio mode, files are saved directly to local workspace.
Sharing & Access Control
Generated PDFs can be shared as workspace-only, invite-only, or public URL (optionally passcode-protected).
Execution Modes
Remote HTTP endpoint (for Claude.ai web, etc.) or local stdio (for Claude Desktop, Cursor, VS Code, etc.).
Re:port Flow MCP
Official display name: Re:port Flow MCP. Package and implementation identifier: reportflow-mcp. Legacy search aliases: ReportFlow MCP Server and ReportFlow.
Overview
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.
Related MCP server: PDF Tools AI MCP
Features
Generate PDFs from natural-language requests like "create an invoice for Acme Corp totalling $300"
Expose your Re:port Flow designs and their parameter schemas directly to the AI as MCP Resources
Bulk-generate many PDFs and download them as a single ZIP
Save outputs to whichever workspace folder the user is currently in (Claude Desktop / Claude Code / Cursor / VS Code all supported)
Setup
Re:port Flow MCP runs in two ways — pick whichever matches your client.
Remote server (claude.ai / web clients) — Streamable HTTP
Add Re:port Flow as a custom connector pointing at the hosted endpoint:
https://mcp.re-port-flow.com/mcpIn 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.
Local server (Claude Desktop / Claude Code / Cursor) — stdio via npx
Add the following to your config file (.mcp.json, claude_desktop_config.json, ~/.cursor/mcp.json, etc.):
{
"mcpServers": {
"reportflow": {
"command": "npx",
"args": ["-y", "reportflow-mcp"]
}
}
}That's the whole setup. No env vars, no API keys, no secrets to manage.
VS Code (MCP-enabled builds)
Same JSON in .vscode/mcp.json.
Requirements
Remote: an MCP client that supports custom HTTP connectors (e.g. claude.ai). No local install.
Local (stdio): Node.js 22+ (auto-fetched by
npx) and a browser available during the first login.A Re:port Flow account (either way).
Supported protocol revisions
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 viaserver/discover; no session header, requests carry their protocol version in_meta.2025-era revisions (
2025-11-25,2025-06-18,2025-03-26,2024-11-05,2024-10-07) — classicinitializehandshake, 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.
Authentication
Remote (claude.ai)
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.
Local (stdio)
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.
Usage examples
Each example below is a prompt you can paste as-is; the AI picks the right tools.
1. Generate a single PDF (list → schema → generate)
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.
Remote: returns a download URL (
fileUrl).Local: also saves the file and returns its absolute path.
2. Batch-generate many PDFs
From the statement template, generate one PDF per customer (Acme $100, Globex $250, Initech $80) and give them to me together.
Local (stdio):
generate_pdfs_syncwrites a single ZIP to your workspace.Remote:
generate_pdfs_asyncruns the batch and returns a request id plus a download URL.
3. Async generate, then download (local)
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.
4. Start from zero templates (gallery → copy → generate)
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.
Slash commands
Command | Purpose |
| Step-by-step recipe for a single PDF |
| Recipe for batch PDF generation |
| Quick feature tour |
Where files are saved (local mode)
Output location is resolved in this order:
Explicit instruction from the user (e.g. "save to my Desktop")
The currently-open workspace root (Claude Code / Cursor / VS Code)
The OS temp directory as fallback
Reference
Tools (called by the AI)
Tool | Purpose |
| First-time / re-authentication |
| List available designs |
| Fetch the parameter schema for a design |
| Generate one PDF (sync returns path; async returns request ID) |
| Generate many PDFs (returns a ZIP) |
| Download artifacts produced by async tools |
| Translate a natural-language brief into a |
| ChatGPT connector convention tools (single string argument), closed-world ( |
| Search the public template gallery (no auth needed) by keyword/category. Returns candidate templates that are not yet in your workspace — their |
| Fetch full details of one public gallery template by |
| 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 |
Resources (attachable as AI context)
URI | Contents |
| List of available designs |
| Parameter schema for one design |
| Catalog of error messages from the Content Service |
| Server feature overview |
Prompts (slash-command recipe cards)
/generate_pdf, /generate_pdfs, /reportflow_help — pass arguments and the AI follows the prepared workflow.
Troubleshooting
Symptom | Fix |
Error containing | Ask the AI: "re-authenticate with Re:port Flow" |
|
|
No keychain available on Linux | Falls back automatically to a chmod-0600 file under |
Browser cannot open over SSH / remote shell | Authenticate once on a local machine; afterwards the cached token works on remote hosts |
Privacy
Re:port Flow MCP is a thin client: it forwards your requests to your own
Re:port Flow account and returns the generated PDFs. It does not sell or share
your data with third parties. Authentication tokens are stored locally (OS
keychain, or a chmod-0600 file fallback) and are sent only to Re:port Flow's
own services — during the OAuth login, and as a Bearer credential on each
authenticated API call (listing templates, generating or downloading PDFs).
They are never shared with any third party.
For the full privacy policy — what is collected, how long it is retained, and how it is handled — see: lp.re-port-flow.com
Security
The hosted endpoint validates the Host header (DNS-rebinding protection) and
rejects structurally invalid Origin headers with 403 Forbidden, per the MCP
Streamable HTTP specification's Security requirements. Authentication is
Bearer-token only — no cookies, and CORS never allows credentials. The full
policy and its threat model are documented in
docs/security.md (Japanese).
Support
Need help, found a bug, or have a directory-review question?
Re:port Flow (privacy & support): https://lp.re-port-flow.com
GitHub Issues: https://github.com/re-port-flow/reportflow-mcp/issues
License
MIT — see LICENSE.
Links
Re:port Flow: https://re-port-flow.com
Privacy & Support: https://lp.re-port-flow.com
Issues: https://github.com/re-port-flow/reportflow-mcp/issues
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server that converts Markdown to high-quality PDF documents using LaTeX, enabling AI agents like Claude to generate professional PDFs without requiring sign-ups or credit cards.12910MIT
- Alicense-qualityAmaintenancePDF Tools AI - MCP server providing AI-powered tools and automation by MEOK AI Labs10MIT
- AlicenseAqualityFmaintenanceMCP server for BulkRender — generate bulk DOCX and PDF documents from Claude, Cursor, Windsurf, and any MCP-compatible AI assistant15901MIT
- AlicenseAqualityAmaintenanceMCP server for generating professional PDFs from structured JSON in AI agents like Claude or Cursor, using pure Node.js with embedded fonts and precision text layout.6146MIT
Related MCP Connectors
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/re-port-flow/reportflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server