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

@nigamelastic/cvmaker-mcp

v1.1.0

Published

MCP server for CV Maker — generate pixel-perfect CV PDFs via AI

Readme

cvmaker-mcp

A local Model Context Protocol (MCP) server that bridges AI assistants (Claude Desktop, Cursor, etc.) with the CV Maker app to generate pixel-perfect CV PDFs.

How it works

  1. You describe your background to an AI assistant (e.g. Claude Desktop)
  2. The AI structures your information and calls this MCP tool
  3. The AI will explicitly ask where you want the final PDF saved, ensuring total control over the output destination.
  4. A local headless browser securely visits resume.nigamelastic.com, computationally injects your CV data locally (without transmitting to any backend server), and captures the resume in PDF format.
  5. In addition to PDFs, the AI can securely save or load your structured "profiles" as .cv.json files directly to your hard drive, bypassing cloud storage entirely.

🔒 Privacy first: Your CV data is injected into a local browser's localStorage and is never sent to any external server.

Prerequisites

Quick Start (No Install)

You can run the MCP server directly using npx in your MCP client configuration (Claude Desktop, Cursor, etc.):

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

[!TIP] Smart Browser Detection: The first time you run this, it will check for a system browser (Chrome/Brave/Chromium). If none is found, it will automatically download a lightweight version (~130MB) and notify you via logs.

Prerequisites

Configuration

Claude Desktop

Add the following to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "cvmaker": {
      "command": "npx",
      "args": ["-y", "@nigamelastic/cvmaker-mcp"]
    }
  }
}

Development / Manual Installation

If you prefer to run from source:

git clone https://github.com/nigamelastic/cvmaker_mcp.git
cd cvmaker_mcp
npm install
node src/index.js

Usage

Once configured and Claude Desktop is restarted, you can use natural language:

"Create a CV for a Senior React Developer with 8 years of experience at Google and Meta. Use the tech template."

"Here's my LinkedIn summary: [paste text]. Build me a CV PDF using the elegant template."

Available Templates

| Template | Description | |---|---| | standard | Clean, traditional single-column layout | | modern | Contemporary design with accent colours | | minimal | Ultra-clean, whitespace-focused | | elegant | Sophisticated serif-accented layout | | sidebar | Two-column with a dark sidebar | | tech | Developer-focused, monospace accents | | europass | Traditional, highly structured European standardized layout | | executive | Formal, dense layout optimized for extensive senior experience |

Tool Reference

generate_cv_pdf

Generates a pixel-perfect A4 PDF using the CV Maker engine natively. | Parameter | Type | Required | Description | |---|---|---|---| | cv.personal | object | ✅ | Name, title, email, phone, website, location, summary | | cv.experience | array | ✅ | List of { role, company, period, description } | | cv.education | array | ✅ | List of { degree, school, period } | | cv.skills | array | ✅ | List of skill strings | | cv.customSections | array | — | Up to 4 custom { title, content } sections | | cv.activeTemplate | string | — | Template name (default: standard) | | destination_dir | string | ✅ | Absolute directory path where you want the PDF saved | | output_filename | string | — | PDF filename without extension |

Returns: File path to the generated PDF on your local machine.

export_cv_json

Saves the structured CV JSON to a local file in ~/.cvmaker-profiles/. Perfect for saving "profiles" to iterate on later. | Parameter | Type | Required | Description | |---|---|---|---| | cv | object | ✅ | structured CV JSON Payload | | output_filename | string | — | Desired profile filename without extension |

import_cv_json

Loads a previously saved CV JSON profile from your hard drive structure back into the AI context. | Parameter | Type | Required | Description | |---|---|---|---| | file_path | string | ✅ | Absolute absolute path to the .cv.json file |

get_live_preview_url

Generates a payload or standalone file locally for previewing the CV JSON on resume.nigamelastic.com. | Parameter | Type | Required | Description | |---|---|---|---| | cv | object | ✅ | structured CV JSON Payload |

extract_resume_data

A helper tool for validating AI-extracted resume/LinkedIn text explicitly against the strict CV JSON Schema before doing heavier rendering operations. | Parameter | Type | Required | Description | |---|---|---|---| | cv | object | ✅ | structured CV JSON Payload |

get_available_templates

Fetches a list of valid template string IDs supported by CV Maker without requiring manual code inspection.

Warranty and Liability Disclaimer

This software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

Use of third-party site: This MCP server interacts with https://resume.nigamelastic.com/. While this server sanitizes data locally before injection, the user acknowledges that they are responsible for the content they process and that the final PDF rendering occurs within a headless browser instance.

License

MIT © nigamelastic