mcpbeat Sign in

Carbone MCP Server

answering

Carbone MCP is answering right now. Last checked 13 min ago. 135 installs a week from npm. It exposes 11 tools. Last commit 19 Aug 2026.

Generate PDF/DOCX/XLSX/PPTX from templates+JSON. Convert Office/HTML/MD to PDF. Universal templating

Installs per day peak 147 · avg 29 · +66% w/w
a month agotoday
Uptime history 47 days of history · worst day 99%
47 days agonow
100.0%
Uptime 24h
91 of 91 checks
11
Tools
read from the server
213 ms
Response time
average over 24h
135
Installs / week
npm and PyPI

What changed 9

Every tool that appeared, vanished or quietly changed what it asks for. Recorded since 19 August 2026. No other catalogue keeps this.

19 Aug 6 tools changed the parameters they ask for convert_document, download_template, list_templates and 3 more
19 Aug 2 tool descriptions were rewritten convert_document, download_template
19 Aug a tool changed version

Nothing serious here today

Today is the operative word: we check Carbone MCP every 15 minutes and re-read its code on every release. Watch it and you find out the day that stops being true.

Three servers free · no card

Connect this server

Endpoint below is the one we actually reach during checks — not the one copied from a README. Last verified 13 min ago.

run in your terminal
claude mcp add carbone-mcp --transport http https://mcp.carbone.io
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "carbone-mcp": {
      "url": "https://mcp.carbone.io"
    }
  }
}
~/.codex/config.toml
[mcp_servers.carbone-mcp]
url = "https://mcp.carbone.io"
.cursor/mcp.json
{
  "mcpServers": {
    "carbone-mcp": {
      "url": "https://mcp.carbone.io"
    }
  }
}
.vscode/mcp.json
{
  "mcpServers": {
    "carbone-mcp": {
      "url": "https://mcp.carbone.io"
    }
  }
}

This one needs environment variables set before it will start: CARBONE_API_KEY (Your Carbone API key from https://account.carbone.io. Required when using the Carbone cloud API. If CARBONE_BASE_URL points to an on-premise server, authentication is not required and this can be left empty.), CARBONE_BASE_URL (Custom Carbone API base URL for on-premise deployments. Defaults to https://api.carbone.io. When set to a custom URL, CARBONE_API_KEY is not required.). The author declared them in the registry entry; get the values from the project itself.

Available tools 11

Read directly from the server with tools/list, grouped by what they act on. If a tool disappears, we record the date.

template
delete_template
Delete a stored Carbone template. This is a soft delete: the template is marked for garbage collection and removed after a delay (default 24 hours). You can delete by Template ID (removes all versions) or by Version ID (removes only that specific version). For immediate or scheduled deletion, use update_template_metadata with expireAt = 42000000000 (NOW) or a future Unix timestamp.
update_template_metadata
Update the metadata of a stored template: name, comment, category, tags, deployment timestamp, or expiration. Use deployedAt to activate a specific version for rendering. Use expireAt to schedule or trigger immediate deletion.
api
get_api_status
Check Carbone API health and version. Returns the current API version and a status message. Useful for verifying connectivity and confirming which Carbone version is active.
capabilities
get_capabilities
Returns a summary of all Carbone capabilities: supported formats, features, tool usage examples, and links to full documentation. Call this first if you are unsure what Carbone can do.
categories
list_categories
List all template categories currently in use in your Carbone account. Categories act like folders for organising templates (e.g. "invoices", "legal", "hr"). Use the returned names as the category filter in list_templates or upload_template.
convert
convert_document
Convert any document to another format without storing a template. Supports 100+ input/output format combinations: Office documents, PDFs, images, web pages, spreadsheets, and more. The source file can be a local path, a URL, or a base64 string. Carbone tags are PRESERVED, not resolved: converting a template keeps every {d.field} intact, so this is also how you proof a template in another format (DOCX template → PDF, or DOCX → ODT while it stays a template). Use render_document instead when you need data injection ({d.field} tags resolved), translations, or batch generation. Common conversions: DOCX → PDF (file: "report.docx", convertTo: "pdf"; add converter: "I" for the fastest DOCX→PDF path), XLSX → PDF (file: "data.xlsx", convertTo: "pdf"), PPTX → PDF (file: "slides.pptx", convertTo: "pdf", converter: "O" for best fidelity), HTML → PDF (file: "page.html", convertTo: "pdf", converter: "C" for full CSS/JS rendering), DOCX → HTML (file: "doc.docx", convertTo: "html"), XLSX → CSV (file: "sheet.xlsx", convertTo: "csv"), PDF → PNG (file: "doc.pdf", convertTo: "png"), PPTX → PNG (first slide as image), MD → PDF (file: "readme.md", convertTo: "pdf").
download
download_template
Download the original source file of a stored Carbone template (e.g. the DOCX, XLSX, PPTX, or HTML file that was uploaded). Use this to inspect, edit, or back up a template. Pass a Template ID to download the currently deployed version, or a Version ID to download a specific version. Set sample:true to fetch the JSON sample dataset stored with the template instead of the template file itself.
render
render_document
Generate a document by merging a Carbone template with JSON data. Two modes: (1) pass templateId to use a previously uploaded template; (2) pass template (file path, URL, or base64) to upload and render in a single request without storing a template. Supports output format conversion, multilingual rendering, currency conversion, batch generation, and advanced PDF options (watermark, password, PDF/A). Async mode: pass webhookUrl to render asynchronously — Carbone will POST the renderId to your URL when the document is ready. Async mode is required when using batch generation (batchSplitBy).
tags
list_tags
List all tags currently used across templates in your Carbone account. Tags are free-form labels attached to templates (e.g. "sales", "billing", "v2"). Note: the Carbone API does not support filtering list_templates by tag — use this tool to discover available tags, then call list_templates and filter the results manually.
templates
list_templates
List stored Carbone templates with filtering, search, and pagination. Filter by Template ID, Version ID, category, or upload origin. Use includeVersions to see the full version history of each template. Supports cursor-based pagination for large collections. Note: filtering by tags is not supported by the Carbone API — use list_tags to discover tags, then filter results manually. Note: templates uploaded with versioning disabled appear with id = null and are identified only by their versionId — pass that versionId where a Template ID is expected (e.g. delete_template, download_template).
upload
upload_template
Upload and store a reusable Carbone template. Once uploaded, use render_document with the returned Template ID to generate documents from it. Supports versioning: multiple versions can live under a single stable Template ID, with deployedAt controlling which version is active. Accepted formats: DOCX, XLSX, PPTX, ODT, ODS, ODP, ODG, HTML, XHTML, IDML, XML, Markdown, PDF, and more.

Endpoints

URLTransportStateLatencyChecked
https://mcp.carbone.io streamable-http answering 281 ms 13 min ago

Alternatives to Carbone MCP

same job, measured the same way
Mdmagic MCP Server
by mdmagic-mcp

Use your own Word templates to convert Markdown → DOCX/PDF/HTML from any MCP-compatible AI.

68 installs/wk 10 tools answering
I
Docmill
by docmill

Generate PDF, DOCX, and XLSX documents from JSON data and create reusable templates via Docmill

43 installs/wk local only
Distill MCP
by lakshgk

Convert PDF, DOCX, XLSX, PPTX, HTML, audio to token-efficient Markdown for any MCP client.

37 installs/wk local only
Markdown Formatter
by xjtlumedia

AI Answer Copier — Convert Markdown to PDF, DOCX, HTML, LaTeX, CSV, JSON, XML, XLSX, RTF, PNG

59 installs/wk local only
DocMake
by docmake

Generate DOCX and PDF documents from your DocMake templates

44 installs/wk local only
Bulkrender
by ayo-nci

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

40 installs/wk local only
TemplateFoxPDF
by templatefoxpdf

MCP server for TemplateFox PDF generation API - Generate PDFs from templates via AI assistants

43 installs/wk local only
Re:port Flow MCP
by re-port-flow

Generate PDF reports from Re:port Flow templates via Claude and other AI agents.

53 installs/wk 2 tools answering

Carbone MCP — questions

Answers built from our own checks of this server.

What can Carbone MCP do?
It exposes 11 tools, read directly from the server on our last check. Among them: convert_document, delete_template, download_template, get_api_status, get_capabilities, list_categories and 5 more. The full list with descriptions is on this page — we take it from the server itself via tools/list, not from a README. How MCP servers expose tools in the first place →
Is Carbone MCP working right now?
We send a real MCP handshake every 15 minutes. Over the last 24 hours 91 of 91 checks got a reply (100.0%), average response time 213 ms. The bar chart above shows every period we have measured.
How do I connect Carbone MCP?
Copy the ready config from this page — we generate it for Claude Code, Claude Desktop, Codex, Cursor and VS Code, each with the file path that client actually reads. It is a remote server, so there is nothing to install — the client connects to the address.
Does Carbone MCP need an API key?
No. Carbone MCP completed a full MCP handshake with us as an anonymous client and listed its tools without asking for anything. All 11 of them are readable on this page. This is what we observed, not what the docs claim.
How fast is Carbone MCP?
It answers our handshake in 213 ms on average, which is faster than 64% of all working MCP servers we measure. The comparison comes from our own checks across the whole registry, every 15 minutes.
How many people use Carbone MCP?
The npm package carbone-mcp was installed 135 times in the last week. Week over week that is +66%. We show installs rather than GitHub stars on purpose: a star is a bookmark, an install is someone actually running it.
Is Carbone MCP open source?
Yes — it is published under the Apache-2.0 licence, written in TypeScript and 4 stars on GitHub. The source link is on this page, so you can read exactly what it does with your data before you connect it.