Enables conversion of Markdown content into styled HTML specifically optimized for seamless pasting into Google Docs with preserved formatting.
Provides tools to convert Markdown into various styled document formats, manage a document library, and publish Markdown content to shareable public URLs.
Converts Markdown text into formatting optimized for Slack's messaging interface, including support for bold text, lists, and code blocks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Unmarkdown MCP ServerConvert these meeting notes for Google Docs using the Executive template"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Unmarkdown MCP Server
A Model Context Protocol (MCP) server that connects AI assistants to the Unmarkdown API. Convert markdown to beautifully formatted documents, manage your document library, and publish pages to the web, all from inside Claude, Cursor, VS Code, or any MCP-compatible client.
Features
Convert markdown to styled HTML for 8 destinations: Google Docs, Word, Slack, OneNote, Email, Plain Text, generic HTML, and raw HTML
62 visual templates with light and dark themes (Swiss, Executive, Terminal, GitHub, and more)
Create, read, update documents in your Unmarkdown library
Publish documents to shareable public URLs at
unmarkdown.com/d/your-slugTrack API usage and quota for the current billing period
Installation
Claude Desktop / Claude for macOS
Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
VS Code
Add to your VS Code MCP settings (.vscode/mcp.json):
Global Installation
If you prefer to install globally instead of using npx:
Then use unmarkdown-mcp as the command instead of npx:
Configuration
Required
Variable | Description |
| Your Unmarkdown API key (starts with |
Optional
Variable | Description | Default |
| Custom API base URL |
|
Usage Examples
Example 1: Convert a meeting notes draft for Google Docs
"Take this markdown and convert it for Google Docs using the Executive template:
# Q1 Planning Meeting ## Attendees - Sarah Chen (Product) - Mike Torres (Engineering) - Lisa Park (Design) ## Action Items - [ ] Finalize roadmap by Friday - [ ] Schedule design review for new dashboard - [ ] Update stakeholder presentation ```"
Claude will use the convert_markdown tool with destination: "google-docs" and template_id: "executive", returning styled HTML ready to paste into Google Docs with proper headings, fonts, and colors.
Example 2: Create and publish a document
"Create a new document called 'API Changelog - February 2026' with this content, then publish it with a clean URL."
Claude will:
Call
create_documentwith the title and markdown contentCall
publish_documentwith the returned document ID and a custom slug
You get back a live URL like https://unmarkdown.com/d/api-changelog-february-2026.
Example 3: Update an existing document
"List my documents and update the most recent one with this new introduction paragraph."
Claude will:
Call
list_documentsto fetch your document libraryCall
get_documentto read the current contentCall
update_documentwith the modified markdown
Example 4: Format markdown for Slack
"Convert this project update to Slack format so it looks good when I paste it in our team channel."
Claude uses convert_markdown with destination: "slack", producing output optimized for Slack's rendering (bold, lists, code blocks, emoji support).
Example 5: Check API usage
"How many API calls have I used this month?"
Claude calls get_usage and returns your current usage count, monthly limit, and billing period.
Tools Reference
Tool | Description | Read-only | Idempotent |
| Convert markdown to styled HTML for any of 8 destinations | Yes | Yes |
| Create a new document in your library | No | No |
| List saved documents with pagination | Yes | Yes |
| Fetch a document by ID with full content | Yes | Yes |
| Modify a document's title, content, template, or metadata | No | Yes |
| Publish a document to a shareable public URL | No | Yes |
| Check API quota for the current billing month | Yes | Yes |
Destinations
The convert_markdown tool supports these output formats:
Destination | Description |
| Optimized for pasting into Google Docs |
| Formatted for Microsoft Word |
| Slack-compatible formatting |
| Microsoft OneNote compatible |
| Email client friendly HTML |
| Plain text with ASCII formatting |
| General-purpose styled HTML |
| Raw HTML output |
Templates
Pass any template ID to convert_markdown, create_document, or update_document. Popular templates include:
Template | Category |
| Free (default) |
| Free |
| Free |
| Free |
| Business (Pro) |
| Business (Pro) |
| Business (Pro) |
Browse all 62 templates at unmarkdown.com/templates.
API Limits
Plan | Monthly API Calls | Rate Limit |
Free | 1,000 | 10 req/sec |
Pro ($8/mo annual) | 10,000 | 30 req/sec |
Overage: $1.00 per 1,000 additional calls (Pro only). Free plan has a hard limit.
Privacy
This MCP server sends your markdown content and document data to the Unmarkdown API (api.unmarkdown.com) for processing. No data is stored locally by the MCP server itself. All data handling is governed by the Unmarkdown Privacy Policy.
Specifically:
Markdown content sent via
convert_markdownis processed and returned immediately. It is not stored on Unmarkdown servers.Documents created via
create_documentorupdate_documentare stored in your Unmarkdown account and can be deleted at any time.API keys authenticate requests and are never logged or shared.
For the full privacy policy, visit unmarkdown.com/privacy.
Support
Documentation: docs.unmarkdown.com
API Reference: docs.unmarkdown.com/api/overview
Contact: unmarkdown.com/contact
Development
License
MIT. See LICENSE for details.