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

@pdfmakerapi/mcp

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pdfmakerapi/mcp

MCP server for PDFMakerAPI — turn a description into a shareable, editable PDF (invoices, certificates, reports, resumes) from any MCP client (Claude, Cursor, etc.).

Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
156
62.5%
Maintainers
1
Weekly downloads
 
Created
Source

PDFMakerAPI MCP server

npm

An MCP server for PDFMakerAPI. It exposes a single create_document tool that turns a document description into a shareable link which opens in the PDFMakerAPI editor — preview, edit any field, and download the PDF.

Works with any MCP client: Claude Desktop, Cursor, Windsurf, Cline, Zed, etc.

It's a thin client of the public API at https://api.pdfmakerapi.com, so it needs no server, account, or credentials of its own.

What it does

The create_document tool accepts a PDFMakerAPI Document (invoice, certificate, report, resume, letter, …) built by the calling model, stores it via POST /api/v1/documents, and returns a link like https://app.pdfmakerapi.com/d/<id>.

Use it

Claude Desktop

Edit claude_desktop_config.json (Settings → Developer → Edit Config):

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

Restart Claude Desktop, then ask: "Make a professional invoice for Acme with 3 line items."

Cursor / Windsurf / Cline / Zed

Add the same server to the client's MCP config:

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

Configuration

Env varDefaultPurpose
PDFMAKERAPI_BASE_URLhttps://api.pdfmakerapi.comPoint the tool at a different API (e.g. http://localhost:3001 for local dev).

Develop

git clone https://github.com/GerardoBarrera/pdfmakerapi-mcp.git
cd pdfmakerapi-mcp
npm install
npm run build   # compile to dist/
npm run dev     # run from source (tsx)

License

MIT

Keywords

mcp

FAQs

Package last updated on 19 Jun 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