🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@rendermark/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rendermark/mcp-server

> MCP (Model Context Protocol) server for RenderMark — expose markdown rendering and document management to AI agents.

npmnpm
Version
0.1.7
Version published
Weekly downloads
95
-47.51%
Maintainers
1
Weekly downloads
 
Created
Source

@rendermark/mcp-server

MCP (Model Context Protocol) server for RenderMark — expose markdown rendering and document management to AI agents.

Installation

npm install @rendermark/mcp-server

Configuration

Create ~/.rendermark/config.json:

{
  "apiKey": "rm_live_your_api_key_here",
  "apiBaseUrl": "https://rendermark.app"
}

Get your API key from rendermark.app/settings/keys.

Tools

The MCP server exposes 16 tools:

Rendering

ToolDescription
render_markdownConvert markdown to styled HTML with themes, templates, TOC, and syntax highlighting
render_to_imageRender markdown to PNG or JPEG image
render_diffGenerate a side-by-side or inline diff view between two markdown versions
export_markdownExport markdown to a PDF, DOCX, or HTML file on disk
export_batchBatch export multiple markdown files at once
validate_markdownCheck markdown for common issues and formatting problems

Publishing & Sharing

ToolDescription
publish_to_rendermarkPublish a markdown document to RenderMark and get a shareable link
publish_to_google_docsPublish a markdown document as a Google Doc
share_live_previewCreate a temporary shareable URL with configurable expiration (1h–7d)
share_documentShare a published document with specific email addresses

Document Management

ToolDescription
read_documentFetch a document from RenderMark by URL, slug, or ID
update_documentUpdate an existing document's content, title, or settings
list_documentsList your documents with search, filtering, and pagination
delete_documentDelete a document (requires explicit confirmation)

Sync

ToolDescription
sync_from_githubSync a markdown file from a GitHub repository to RenderMark

Setup

ToolDescription
setup_api_keySet up a RenderMark API key via browser authentication

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "rendermark": {
      "command": "npx",
      "args": ["-y", "@rendermark/mcp-server"]
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project or ~/.cursor/mcp.json globally:

{
  "mcpServers": {
    "rendermark": {
      "command": "npx",
      "args": ["-y", "@rendermark/mcp-server"]
    }
  }
}

OpenClaw

Add to your OpenClaw MCP configuration:

{
  "mcpServers": {
    "rendermark": {
      "command": "npx",
      "args": ["-y", "@rendermark/mcp-server"]
    }
  }
}

Examples

Render a document

Ask your AI agent:

"Render this markdown as a styled HTML document with the serif theme"

Publish and share

"Publish my README.md to RenderMark and share it with team@example.com"

Export to PDF

"Export the project documentation to PDF with a table of contents"

Diff two versions

"Show me the diff between the old and new versions of this document"

License

MIT

FAQs

Package last updated on 10 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts