# PDFMakerAPI (remote · api.pdfmakerapi.com)

Turn a description into a shareable, editable PDF — invoices, certificates, reports, resumes.

- Trust score: 51/100 (low)
- Change this week: 0
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api.pdfmakerapi.com`: 51/100 (this document), [markdown](https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api.md), [page](https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api)
- npm · `@pdfmakerapi/mcp`: 58/100, [markdown](https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/pdfmakerapi-mcp.md), [page](https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/pdfmakerapi-mcp)

## Channel facts

- Endpoint: `https://api.pdfmakerapi.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 11/100
  - TLS not yet verified: we couldn't open a connection to check the certificate.
  - Authorisation not yet verified: we couldn't confirm whether this endpoint requires it.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS not yet verified: we couldn't read the response headers to check for it.
  - DNSSEC not yet verified: we couldn't validate it against a resolver.
- **Transport & Reachability**: 0/100
  - Transport check failed: declared streamable-http, but we couldn't connect to verify it.
- **Schema Quality & AI Usability**: 0/100
  - Schema not yet verified: we couldn't read the endpoint's schema.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 0/100
  - Tool coverage not yet verified: we couldn't read the endpoint's tools.
- **Capabilities**: 0/100
  - Capabilities not yet verified: we couldn't read the endpoint's capabilities.

**Unverified: 4 categories.** Categories scored 0 because we could not verify them: authentication we do not have, an unreachable endpoint, or not enough scan history. We only credit what we can confirm.

## Install

### Claude

```bash
claude mcp add --transport http gerardobarrera-pdfmakerapi-mcp https://api.pdfmakerapi.com/mcp
```

### Codex

```toml
[mcp_servers.gerardobarrera-pdfmakerapi-mcp]
url = "https://api.pdfmakerapi.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "gerardobarrera-pdfmakerapi-mcp": {
      "type": "remote",
      "url": "https://api.pdfmakerapi.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add gerardobarrera-pdfmakerapi-mcp --url https://api.pdfmakerapi.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  gerardobarrera-pdfmakerapi-mcp:
    url: "https://api.pdfmakerapi.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "gerardobarrera-pdfmakerapi-mcp": {
      "type": "http",
      "url": "https://api.pdfmakerapi.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-07-31 (score 51, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 51, 0)

- [security regression] Endpoint reachability: reachable → unreachable
- [security regression] DNSSEC: fail → unverified
- [security regression] HSTS header: pass → unverified
- [security regression] Stability: 0.03 → unverified
- [security regression] TLS certificate: pass → unverified
- [security regression] Transport: pass → fail
- [security] Authorization: Authorisation not yet verified: we couldn't confirm whether this endpoint requires it.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 51, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 50)

First indexed and scored.

## MCP tools (1)

### `create_document` (~1672 tokens)

Create a professional, shareable PDF document — invoices, receipts, certificates, reports, resumes, letters. Returns a link that opens the document in the PDFMakerAPI editor to preview, edit any field, and download the PDF.

Design a THOROUGH, realistic document (don't leave it sparse) that exactly follows this model, then pass it as `document`.

DOCUMENT MODEL (PDFMakerAPI):

Document:
  \- id: string (short slug)
  \- name: string
  \- description: string (one short sentence)
  \- pageSize: "letter" | "a4" | "legal" | "letter-landscape" | "a4-landscape" | "square" | "auto" (default "a4"; "auto" = letter width with the height growing to fit the content — use it for certificates/awards so there's no empty space below)
  \- pageBackgroundColor: hex string (default "#ffffff")
  \- margin: "none"|"sm"|"md"|"lg"   // page margin (inset from the page edge); default "lg"
  \- gap: "none"|"sm"|"md"|"lg"   // vertical spacing between top-level sections; default to "lg" (most spacing) for an airy layout
  \- variables: Variable[]   // every {{placeholder}} you use MUST be declared here
  \- children: Node[]        // the document body, top to bottom

Variable: { id, name (snake_case, used as {{name}}), label (human), type: "text"|"date"|"number"|"currency", defaultValue?: string }

Node is one of (every node has: id, name, width: "full"|"1/2"|"1/3"|"1/4"|"2/3"|"3/4"|"auto", order: number, align?: "left"|"center"|"right", style?: NodeStyle):

  container: { type:"container", layout: { direction:"row"|"column", gap:"none"|"sm"|"md"|"lg", justify?:"start"|"center"|"end"|"between", alignItems?:"start"|"center"|"end"|"stretch" }, children: Node[] }
  text:      { type:"text", content: string (supports \n, {{vars}}, and **inline bold** — wrap part of the text in double asterisks to bold just that part, e.g. "Total: **{{total}}**"), fontSize?:"xs"|"sm"|"base"|"lg"|"xl", fontWeight?:"normal"|"medium"|"semibold"|"bold" }
  table:     { type:"table", columns: { id, name (data key), label (hea…

Input parameters:

- `document` (object, required): The PDFMakerAPI Document object to create, following the schema in this description.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api#diagnostics

## Score history

- 2026-08-03: 51
- 2026-08-02: 51
- 2026-08-01: 51
- 2026-07-31: 51
- 2026-07-30: 51
- 2026-07-29: 51
- 2026-07-28: 51
- 2026-07-27: 51
- 2026-07-26: 50

## Links

- Remote endpoint: https://api.pdfmakerapi.com/mcp
- Repository: https://github.com/GerardoBarrera/pdfmakerapi-mcp
- Website: https://pdfmakerapi.com/
- Changelog RSS feed: https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api/changelog.json
- HTML version of this page: https://verifymcp.io/servers/gerardobarrera-pdfmakerapi-mcp/api
