npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rendermark/mcp-server

v0.1.8

Published

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

Readme

@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

| Tool | Description | |------|-------------| | render_markdown | Convert markdown to styled HTML with themes, templates, TOC, and syntax highlighting | | render_to_image | Render markdown to PNG or JPEG image | | render_diff | Generate a side-by-side or inline diff view between two markdown versions | | export_markdown | Export markdown to a PDF, DOCX, or HTML file on disk | | export_batch | Batch export multiple markdown files at once | | validate_markdown | Check markdown for common issues and formatting problems |

Publishing & Sharing

| Tool | Description | |------|-------------| | publish_to_rendermark | Publish a markdown document to RenderMark and get a shareable link | | publish_to_google_docs | Publish a markdown document as a Google Doc | | share_live_preview | Create a temporary shareable URL with configurable expiration (1h–7d) | | share_document | Share a published document with specific email addresses |

Document Management

| Tool | Description | |------|-------------| | read_document | Fetch a document from RenderMark by URL, slug, or ID | | update_document | Update an existing document's content, title, or settings | | list_documents | List your documents with search, filtering, and pagination | | delete_document | Delete a document (requires explicit confirmation) |

Sync

| Tool | Description | |------|-------------| | sync_from_github | Sync a markdown file from a GitHub repository to RenderMark |

Setup

| Tool | Description | |------|-------------| | setup_api_key | Set 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 [email protected]"

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