Re:port Flow MCP
Server Details
Generate PDF reports from Re:port Flow templates via Claude and other AI agents.
- Status
- Healthy
- OAuth
- Works in Glama
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- re-port-flow/reportflow-mcp
- GitHub Stars
- 1
- Server Listing
- Re:portFlow
TDQS
get_gallery_template and search_gallery_templates have clearly distinct roles: one returns a list of matching templates with slugs, while the other returns detailed information for a specific slug. There is no functional overlap or ambiguity about when to use each.
Both tool names follow a consistent verb_noun pattern using gallery_template(s) as the resource. The singular/plural difference between get and search matches conventional API naming, so the pattern is predictable.
Two tools is on the thin side for a server that appears intended to support report/template workflows. The tools are focused and purposeful, but the count feels slightly underwhelming relative to the broader capabilities implied by the server name and descriptions.
The two tools only cover discovery and detail lookup for gallery templates. The descriptions explicitly reference copy_gallery_template, get_design_parameters, and generate_pdf_sync as necessary next steps, but none of these are available, so an agent cannot actually copy or use a template after finding it.
Available Tools
2 toolsget_gallery_templateARead-onlyIdempotentInspect
公開テンプレートギャラリーのテンプレート詳細を slug で取得します(認証不要)。説明全文・カテゴリ・タグ・サムネイルURL・テンプレート版・複製実績数・作成者名を返します。slug は search_gallery_templates の結果から取得してください。重要: ギャラリーのテンプレートはまだワークスペースにありません。この slug では PDF 生成できないため、使う場合は copy_gallery_template で複製し、返された designId を get_design_parameters / generate_pdf_sync に渡してください。
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | テンプレートの slug(search_gallery_templates の結果に含まれる識別子) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, but the description adds substantial behavioral context beyond those: no authentication required, the exact list of returned fields, and the critical limitation that the gallery slug cannot be used for PDF generation. Mentioning that the template is not yet in the workspace prevents a likely misuse. This goes well beyond what annotations alone provide.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: the first states the action and return payload, the second gives the parameter source, and the third delivers the critical workflow warning. The core purpose is front-loaded, and the important caveat is clearly emphasized. There is no filler or redundant repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with no output schema, the description is complete: it enumerates all returned fields, states that no authentication is needed, identifies how to obtain the slug, and explains the subsequent workflow with copy_gallery_template and designId. An agent has everything needed to call this tool correctly and interpret its results.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes the slug parameter fully, noting it is the identifier contained in search_gallery_templates results. The description repeats this source instruction, adding no new semantic meaning beyond the schema. With 100% schema description coverage, the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (取得), the resource (template details from the public gallery), and the required identifier (slug), making the tool's purpose unmistakable. It also implicitly distinguishes itself from the sibling search_gallery_templates by explaining that the slug is derived from search results. The title 'Get Public Gallery Template Details' reinforces this read-only intent.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent to obtain the slug from search_gallery_templates, establishing the correct preceding tool. It also clearly warns that gallery templates are not yet in the workspace and that the slug alone cannot generate a PDF, routing the agent to copy_gallery_template and then to get_design_parameters/generate_pdf_sync. This is strong when-to-use and when-not-to-use guidance with named alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_gallery_templatesARead-onlyIdempotentInspect
公開テンプレートギャラリーから、まだワークスペースに取り込んでいないテンプレートをキーワードで探します(認証不要)。タイトル・説明・タグ・カテゴリの部分一致で絞り込み、各候補の slug・title・description・category・tags・thumbnailUrl・duplicateCount を返します。ワークスペース内の既存デザインを探す場合はこのツールではなく list_templates / search を使ってください。重要: このツールが返す slug では PDF 生成できません。先に copy_gallery_template で自分のワークスペースへ複製し、返された designId を get_design_parameters / generate_pdf_sync に渡してください。
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 返す最大件数(既定 20、上限 50。超過分は残り件数として通知) | |
| query | Yes | 検索キーワード(タイトル・説明・タグ・カテゴリの部分一致。1文字以上) | |
| category | No | カテゴリ code で絞り込み(任意。例: "invoice", "other") |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark the tool read-only and idempotent, and the description adds meaningful behavioral context: no authentication is required, it only searches templates not yet imported, and its slug output is intentionally not usable for PDF generation. This goes well beyond the structured annotation information.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and well-organized: purpose is stated first, then filtering and return details, then alternatives and the critical workflow warning. Every sentence earns its place without unnecessary fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Even without an output schema, the description lists the exact returned fields and explains the important limitation around PDF generation. It also covers authentication, scope, and routing to sibling alternatives, making the tool fully self-contained for an agent to select and invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents the query, limit, and category parameters. The description reinforces that query performs partial matching on title/description/tags/category and adds the broader search scope, but it does not add substantially new parameter-level meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific action ('search'), a specific resource ('public template gallery'), and a clear scope ('templates not yet imported into workspace'). It also enumerates the match fields and the returned fields, leaving no ambiguity about what the tool does.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly states when to use this tool versus alternatives: use list_templates/search for existing workspace designs instead. It also gives the critical follow-up workflow: the returned slug cannot be used for PDF generation, and copy_gallery_template must be called first before passing the designId to get_design_parameters/generate_pdf_sync.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
2 tool updates
- First observed
get_gallery_template - First observed
search_gallery_templates
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Generate PDFs from templates via AI chat. Works with Claude, ChatGPT, Cursor, and any MCP client.
Render HTML, URLs, and templates to PDF. AI drafts templates and fixes them from logs.
Send transactional pdfs for AI agents via SMTP. Templates included.
Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.
Related MCP Servers
- AlicenseAqualityCmaintenanceGenerate professional PDFs from Claude, Cursor, and other AI tools. Create invoices, contracts, reports, and certificates from templates or inline HTML markup.7431MIT
- AlicenseAqualityDmaintenanceGenerate production-ready PDFs from Markdown, HTML, or built-in templates (invoices, resumes, reports) directly from Claude or any MCP-compatible AI agent via the DocRenders API.619MIT
- AlicenseAqualityDmaintenanceGenerates professional corporate PDF reports from structured JSON specs or raw LLM text output. Enables creating polished multi-page reports with cover page, table of contents, executive summary, sections, tables, and charts.348MIT
- AlicenseAqualityBmaintenanceTurn markdown into designed PDFs with cover page, table of contents, and code blocks that hold across pages. One command from Claude Desktop, Claude Code, Cursor, Cline, Zed, or any MCP-capable client.2631MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.