Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

yoryocoruxo-ai/rendoc-mcp-server MCP server](https://glama.ai/mcp/servers/@yoryocoruxo-ai/rendoc-mcp-server/badges/score.svg)](https://glama.ai/mcp/servers/@yoryocoruxo-ai/rendoc-mcp-server) πŸ“‡ ☁️ 🍎 πŸͺŸ 🐧 - Generate professional PDF documents (invoices,...

README.md

@rendoc/mcp-server

![npm version](https://www.npmjs.com/package/@rendoc/mcp-server) ![License: MIT](https://opensource.org/licenses/MIT) ![CI](https://github.com/yoryocoruxo-ai/rendoc-mcp-server/actions/workflows/ci.yml)

<a href="https://glama.ai/mcp/servers/@yoryocoruxo-ai/rendoc-mcp-server"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@yoryocoruxo-ai/rendoc-mcp-server/badge" alt="rendoc MCP server" /> </a>

The rendoc MCP server lets AI assistants like Claude Desktop, Cursor, and any other MCP-compatible client generate professional PDF documents on demand. Connect your AI to rendoc and it can create invoices, contracts, reports, certificates, and any other PDF β€” from reusable templates or inline HTML/Handlebars markup β€” all from a natural language prompt.

Turn "Generate an invoice for Acme Corp, 40 hours of consulting at €85/h" into a delivered PDF in seconds.

Use Cases

| Use Case | Example Prompt | |----------|----------------| | Invoices | "Generate an invoice for client X with these line items..." | | Contracts | "Draft a freelance contract for TechStart SL, €18,000 fee, 50% upfront..." | | Certificates | "Issue a course completion certificate for MarΓ­a GonzΓ‘lez..." | | Reports | "Create a March 2026 sales report with these KPIs..." | | Bulk generation | "Generate certificates for all 50 attendees in this CSV" | | Custom documents | Anything you can describe in HTML + data |

See detailed walkthroughs in examples/.

Features

  • 7 tools for document generation, template management, and usage tracking
  • Template-based or inline β€” save reusable templates or pass markup on the fly
  • Handlebars syntax β€” use {{variables}}, {{#each}}, {{#if}} in your markup
  • Multiple paper sizes β€” A4, Letter, Legal, A3, A5, portrait or landscape
  • Schema validation β€” templates can declare a JSON Schema so the AI can't pass invalid data
  • Zero config β€” just set RENDOC_API_KEY and go
  • Lightweight β€” ~35 KB unpacked, pure TypeScript, only 2 runtime dependencies
  • Verified on Glama β€” security, quality, and license checks passed

Quick Setup for Claude Desktop

Add this to your Claude Desktop configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "rendoc": {
      "command": "npx",
      "args": ["-y", "@rendoc/mcp-server"],
      "env": {
        "RENDOC_API_KEY": "your-api-key"
      }
    }
  }
}

Restart Claude Desktop. The rendoc tools will appear in the MCP tools menu.

Quick Setup for Claude Code

Add this to your project or global settings (.claude/settings.json):

{
  "mcpServers": {
    "rendoc": {
      "command": "npx",
      "args": ["-y", "@rendoc/mcp-server"],
      "env": {
        "RENDOC_API_KEY": "your-api-key"
      }
    }
  }
}

Quick Setup for Cursor

Add to ~/.cursor/mcp.json (or your project's .cursor/mcp.json):

{
  "mcpServers": {
    "rendoc": {
      "command": "npx",
      "args": ["-y", "@rendoc/mcp-server"],
      "env": {
        "RENDOC_API_KEY": "your-api-key"
      }
    }
  }
}

Available Tools

| Tool | Description | Key Parameters | |------|-------------|----------------| | generate_document | Generate a PDF from a template or inline markup | template_id or markup, data, paper_size?, orientation?, filename? | | list_templates | List available document templates | category? | | preview_template | Inspect a template's markup, styles, and schema | template_id | | create_template | Create a new reusable template | name, slug, markup, schema, category?, styles?, sample_data?, paper_size?, orientation?, is_public? | | delete_template | Delete a template by ID | template_id | | get_document | Get details of a generated document | document_id | | get_usage | View monthly API usage statistics | _(none)_ |

Each tool returns structured JSON with download URLs, document IDs, and metadata the assistant can act on.

Get an API Key

  1. Sign up at rendoc.dev
  2. Go to the API Keys dashboard
  3. Create a new key and copy it into your MCP client config

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | RENDOC_API_KEY | Yes | β€” | Your rendoc API key for authentication | | RENDOC_API_URL | No | https://rendoc.dev | Base URL for the rendoc API (useful for self-hosted instances) |

Examples

Detailed walkthroughs with real prompts and tool calls:

How It Works

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   MCP/stdio    β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”   HTTPS   β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚ Claude Code  β”‚ ─────────────▢ β”‚ @rendoc/mcp-server β”‚ ────────▢ β”‚ rendoc API  β”‚
β”‚ / Desktop    β”‚                β”‚   (this package)    β”‚           β”‚  (PDF gen)  β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ◀───────────── β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜ ◀──────── β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
        β–²         tool results                        download URL
        β”‚
        └── User prompt: "Generate an invoice for..."

The MCP server translates natural language tool calls from your AI assistant into authenticated REST requests to the rendoc API, and returns structured responses with PDF download URLs.

Contributing

Contributions are welcome. See CONTRIBUTING.md for development setup and PR guidelines.

For security issues, please see SECURITY.md and email info@rendoc.dev β€” do not open a public issue.

Links

License

MIT β€” see LICENSE.

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.