Bulkrender MCP Server

Generate DOCX and PDF documents from AI assistants using BulkRender templates.

Remote serverstreamable-httpGo

What is the Bulkrender MCP server?

Most payments and commerce work still happens through a UI a human drives. Bulkrender MCP server moves it into the conversation instead. Generate DOCX and PDF documents from AI assistants using BulkRender templates.

The short version

BulkRender MCP server. Generate DOCX and PDF documents from Claude, Cursor, Windsurf, Cline, and any other MCP-compatible AI assistant.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • list_templates — List all templates
  • get_template — Get template details and variable schema
  • search_templates — Search templates by name or tag
  • generate_document — Generate a single document (DOCX or PDF)
  • generate_batch — Generate documents for multiple records (up to 500)
  • get_batch_status — Poll batch job status and get download URLs
  • check_credits — Check remaining credits
  • refresh_document_url — Get a fresh signed URL for an existing document
  • estimate_cost — Estimate credit cost before generating
  • create_template_from_docx — Create a reusable template from a DOCX URL
  • submit_feedback — Submit feedback or a bug report
  • acp_list_public_templates — List built-in templates (invoice, quote, contract, report, proposal)

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

What it needs from you

Configuration is passed through the environment: BULKRENDER_API_KEY, YOUR_MCP_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

How it compares

This sits in the payments and commerce group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Bulkrender's toolset — list_templates, get_template, search_templates and 11 more — is a fair guide to whether it matches your workflow. It is maintained by ayo-nci; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Bulkrender.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_templatesList all templates
get_templateGet template details and variable schema
search_templatesSearch templates by name or tag
generate_documentGenerate a single document (DOCX or PDF)
generate_batchGenerate documents for multiple records (up to 500)
get_batch_statusPoll batch job status and get download URLs
check_creditsCheck remaining credits
refresh_document_urlGet a fresh signed URL for an existing document
estimate_costEstimate credit cost before generating
create_template_from_docxCreate a reusable template from a DOCX URL
submit_feedbackSubmit feedback or a bug report
acp_list_public_templatesList built-in templates (invoice, quote, contract, report, proposal)
acp_create_sessionCreate a checkout session and get a Stripe payment URL
acp_pay_sessionCharge a Stripe payment method directly (developer path)

How to install the Bulkrender MCP server

{
  "mcpServers": {
    "bulkrender": {
      "url": "YOUR_MCP_URL"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
BULKRENDER_API_KEYCredential the server authenticates with.Yes
YOUR_MCP_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Bulkrender to list templates.
  • Use Bulkrender to get template.
  • Use Bulkrender to search templates.

Frequently asked questions

It connects Bulkrender to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (list_templates, get_template, search_templates, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Bulkrender directly.