Reportflow Mcp
@re-port-flow
About Reportflow Mcp
remote endpoint at https://mcp.re-port-flow.com/mcp works directly from Claude.ai (web) without npm setup
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"reportflow": {
"type": "http",
"url": "https://mcp.re-port-flow.com/mcp"
}
}
}Tools
10【PDF 生成の起点 / Sampling 不要・全クライアント対応】指定 designId のパラメータ構造(各フィールドの name・type・label、および作成者が設定した場合は意味・入力ガイドを表す description)を取得します。generate_pdf_sync / generate_pdfs_async を呼ぶ前に必ず本ツールでスキーマを確認し、description があればその意図に沿って、ユーザーから実値を聞き取って params を組み立ててください。プレースホルダーや架空値の生成は禁止です。
ワークスペース内のデザイン一覧を取得します。各デザインのID・名称・最新バージョン・サムネイルURLを返します。取得したidをdesignIdとしてPDF生成ツールやget_design_parametersに使用します。テンプレートを選ぶ際は、まず label(名称)とユーザーの希望の一致度を最優先に判断し、最も近いものを選んでください。名称だけで絞り込めない場合に限り作業内容から推測してよく、それでも曖昧な場合は候補を提示してユーザーに確認してください。
デザインIDとパラメータを指定してPDFを生成します。応答にダウンロード URL が含まれるため、本ツール 1 回の呼び出しで結果提示が完結します (別途ダウンロード用ツールを呼ぶ必要はありません)。 - stdio モード (Claude Desktop / Code): ローカルに保存し絶対パスも返します。outputDir で保存先を指定できます (未指定時はクライアントのワークスペース Roots または OS 一時ディレクトリ)。 - HTTP モード (claude.ai / n8n 等): サーバー側には保存せず、ダウンロード URL (fileUrl) と requestId / fileId を返します。 【重要】呼び出し前に必ず get_design_parameters でデザインの必要パラメータ構造を確認し、ユーザーから必要な値を聞き出すこと。プレースホルダー値・架空の値を勝手に生成しないこと。 【passthrough のプライバシー注意】content.passthrough のトップレベルの文字列/数値の値は生成 PDF の XMP メタデータに埋め込まれ、PDF 受領者や OS のファイル検索 (Spotlight / Windows Search) から閲覧可能になるため、個人情報・機微情報を入れないこと。
複数のパラメータセットでPDFを一括非同期生成します。即座にrequestIdとfiles情報を返します。ZIPダウンロードはdownload_zipツールを使用してください。 【重要】呼び出し前に必ず get_design_parameters でデザインの必要パラメータ構造を確認し、ユーザーから必要な値を聞き出すこと。ユーザーが指定していないパラメータがある場合は、本ツールを呼ぶ前にユーザーに必ず確認すること。プレースホルダー値・架空の値を勝手に生成しないこと。パラメータが一切提供されていない場合も、まずユーザーに値を尋ねること。 【passthrough のプライバシー注意】contents[].passthrough のトップレベルの文字列/数値の値は生成 PDF の XMP メタデータに埋め込まれ、PDF 受領者や OS のファイル検索 (Spotlight / Windows Search) から閲覧可能になるため、個人情報・機微情報を入れないこと。
自然文の要件と designId から、クライアント AI(Sampling)で generate_pdf_sync 用の params JSON を下書きします。【Sampling 必須】claude.ai 等の Sampling 非対応クライアントでは自動生成できず、その場合はパラメータスキーマをそのまま返すので手動で params を埋めてください。パラメータ構造の確認だけが目的なら get_design_parameters を使ってください。サーバー側 API キー不要。生成された params は必ずユーザー承認のうえ generate_pdf_sync に渡してください。
Re:port Flow の内部テンプレートカタログ(ユーザー自身のワークスペースに登録済みのデザイン)から、名称の部分一致でテンプレートを解決し、各ヒットの id・title・url を返します。外部サイトや Web の検索は一切行わず、参照範囲は当該ワークスペース内に限定されます。請求書・見積書などのテンプレートを探したいときに使用します。返した id("<designId>@<version>" 形式)は fetch ツールに渡してパラメータ詳細を取得できます。
Re:port Flow の内部テンプレートカタログから、デザイン id("<designId>@<version>" 形式。version は省略可で最新版)で 1 件のテンプレート詳細(PDF 生成に必要なパラメータスキーマ)を取得します。外部サイトや Web へのアクセスは行わず、参照範囲はユーザー自身のワークスペース内に限定されます。search ツールで見つけたテンプレートの中身を確認したいときに使用します。
公開テンプレートギャラリーから、まだワークスペースに取り込んでいないテンプレートをキーワードで探します(認証不要)。タイトル・説明・タグ・カテゴリの部分一致で絞り込み、各候補の slug・title・description・category・tags・thumbnailUrl・duplicateCount を返します。ワークスペース内の既存デザインを探す場合はこのツールではなく list_templates / search を使ってください。重要: このツールが返す slug では PDF 生成できません。先に copy_gallery_template で自分のワークスペースへ複製し、返された designId を get_design_parameters / generate_pdf_sync に渡してください。
公開テンプレートギャラリーのテンプレート詳細を slug で取得します(認証不要)。説明全文・カテゴリ・タグ・サムネイルURL・テンプレート版・複製実績数・作成者名を返します。slug は search_gallery_templates の結果から取得してください。重要: ギャラリーのテンプレートはまだワークスペースにありません。この slug では PDF 生成できないため、使う場合は copy_gallery_template で複製し、返された designId を get_design_parameters / generate_pdf_sync に渡してください。
公開テンプレートギャラリーのテンプレートを、認可時に選択した自分のワークスペースへ複製します(要認証・書き込み)。複製先ワークスペースは接続時の認可で決まっており、引数で変更できません。成功すると designId と version を返すので、そのまま get_design_parameters → generate_pdf_sync に渡して PDF 生成へ進めます。slug は search_gallery_templates / get_gallery_template で確認してください。注意: 呼ぶたびに新しいデザインが 1 件作成されます(同じ slug でも既存の複製は再利用されません)。同じテンプレートを誤って何度も複製しないでください。
Overview
What is Reportflow Mcp?
Reportflow Mcp is a Model Context Protocol server for generating business documents (PDFs) from natural-language requests. It integrates with ReportFlow’s no-code template designer and marketplace, exposing designs, parameter schemas, and PDF generation as MCP tools, resources, and prompts. It is aimed at business users who need document automation without a development environment.
How to use Reportflow Mcp?
Two modes are supported. Remote (recommended): configure your MCP client with an HTTP endpoint at https://mcp.re-port-flow.com/mcp – no Node.js installation required. Local (stdio): set the MCP server command to npx -y reportflow-mcp (Node.js 18+ needed). On first use, authenticate via OAuth 2.0 (browser consent flow); for local mode, ask the AI to “authenticate with ReportFlow”. After setup, the AI can invoke tools like generate_pdf_sync and list_templates directly.
Key features of Reportflow Mcp
- Remote-ready, setup-free hosted endpoint (no Node.js required)
- No-code template design via Konva-based browser GUI
- Free template marketplace for invoices, quotes, receipts, and more
- OAuth 2.0 + PKCE + Dynamic Client Registration (no API key exposed)
- Bulk PDF generation with single ZIP download
- Tool annotations (title, readOnlyHint, destructiveHint) for MCP-aware clients
Use cases of Reportflow Mcp
- Generate an invoice or quote from a natural-language description (e.g., "create an invoice for Acme Corp totalling $330")
- Produce receipts, delivery slips, or reports using ready-made templates from the gallery
- Bulk-generate many PDFs and download them as a single ZIP archive
- Allow business users without a local dev setup to start generating documents immediately
FAQ from Reportflow Mcp
How does Reportflow Mcp differ from other document-generation MCP servers?
Reportflow Mcp is remote-ready (no Node.js needed), uses a no-code browser-based template editor with a free marketplace, and authenticates via OAuth 2.0 + PKCE + Dynamic Client Registration—no API key is shared with the AI client.
What are the runtime requirements?
Remote mode: An MCP-capable AI client (e.g., Claude.ai, Claude Desktop, Cursor, VS Code) and a ReportFlow account. Local mode: Node.js 18+, a browser for first-run OAuth consent, and a ReportFlow account.
How does authentication work?
On first connection, a browser tab opens for OAuth consent (workspace selection and approval). Tokens are managed server-side (remote) or stored in the OS keychain/local file (local). No manual API key configuration is needed.
What templates are available?
A free template gallery at https://templates.re-port-flow.com covers invoices, quotes, receipts, delivery slips, reports, and more. Users can also design custom templates in the browser GUI.
What transport protocols and authentication methods are supported?
Transport: HTTP (remote) and stdio (local). Auth: OAuth 2.0 Authorization Code + PKCE with Dynamic Client Registration.
Frequently asked questions
How does Reportflow Mcp differ from other document-generation MCP servers?
Reportflow Mcp is remote-ready (no Node.js needed), uses a no-code browser-based template editor with a free marketplace, and authenticates via OAuth 2.0 + PKCE + Dynamic Client Registration—no API key is shared with the AI client.
What are the runtime requirements?
**Remote mode:** An MCP-capable AI client (e.g., Claude.ai, Claude Desktop, Cursor, VS Code) and a ReportFlow account. **Local mode:** Node.js 18+, a browser for first-run OAuth consent, and a ReportFlow account.
How does authentication work?
On first connection, a browser tab opens for OAuth consent (workspace selection and approval). Tokens are managed server-side (remote) or stored in the OS keychain/local file (local). No manual API key configuration is needed.
What templates are available?
A free template gallery at `https://templates.re-port-flow.com` covers invoices, quotes, receipts, delivery slips, reports, and more. Users can also design custom templates in the browser GUI.
What transport protocols and authentication methods are supported?
**Transport:** HTTP (remote) and stdio (local). **Auth:** OAuth 2.0 Authorization Code + PKCE with Dynamic Client Registration.
Basic information
More Other MCP servers
🪟 Windows-MCP
CursorTouchMCP Server for Computer Use in Windows

Glasswarp
GlasswarpSee and control a real Windows PC you own — from any MCP client, locally or remotely. Observe (UIA + screenshots), click/type/drag/scroll, launch apps, owner Live View. BYOH: your machine, your key.

DeepMark
DeepMark helps teachers deliver rapid, consistent marking with meaningful feedback for every student — in a fraction of the time. What once took a week, now takes one free period.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser

Lemon.io
lemon-ioRequest dedicated senior developers to work on your project, write job descriptions, and prep technical interviews — all without leaving your Claude chat. Just describe what you need, and Lemon.io MCP does the rest. 1–3
Comments