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

autoform-mcp-server

v1.6.0

Published

MCP server for bulk PDF form filling. Detect fields, fill templates, and generate hundreds of PDFs from data — directly from Claude.

Downloads

654

Readme

AutoForm MCP Server

MCP server for bulk PDF form filling. Detect fields, fill templates, and generate hundreds of PDFs from data — directly from Claude.

Quick Setup

Claude Code

Create .mcp.json in your project root:

{
  "mcpServers": {
    "autoform": {
      "command": "npx",
      "args": ["-y", "autoform-mcp-server"]
    }
  }
}

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "autoform": {
      "command": "npx",
      "args": ["-y", "autoform-mcp-server"]
    }
  }
}

Config file location:

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Tools (9)

PDF Analysis

| Tool | Description | |------|-------------| | autoform_get_pdf_info | Get page count and dimensions of a PDF | | autoform_detect_fields | Detect AcroForm fields in interactive PDFs |

Fill Single PDF

| Tool | Description | |------|-------------| | autoform_fill_pdf | Fill a PDF using AcroForm or a saved template | | autoform_fill_at_coordinates | Write text at exact coordinates (for static PDFs Claude analyzes visually) |

Batch Generation

| Tool | Description | |------|-------------| | autoform_fill_batch_at_coordinates | Generate multiple PDFs from one template + data, using coordinates | | autoform_generate_batch | Generate multiple PDFs using a saved template + data array |

Template Management

| Tool | Description | |------|-------------| | autoform_save_coordinates_as_template | Save PDF + field coordinates as a reusable template | | autoform_import_template | Import a template JSON exported from the AutoForm web app | | autoform_list_templates | List all saved templates |

Usage Examples

Fill a certificate (Claude analyzes the PDF visually)

You: "Fill this certificate with the name Juan Pérez"

Claude:
1. Gets PDF dimensions with autoform_get_pdf_info
2. Analyzes the PDF visually to find where the name goes
3. Calls autoform_fill_at_coordinates with the exact position
→ Generates filled certificate

Batch generate from data

You: "Generate certificates for: Ana García, Pedro López, María Torres"

Claude:
1. Calls autoform_fill_batch_at_coordinates with positions + data
→ Generates 3 PDFs + optional merged PDF

Save and reuse a template

You: "Save this certificate layout for future use"

Claude:
1. Calls autoform_save_coordinates_as_template
→ Template saved

You: "Generate 50 certificates using the saved template with this data..."

Claude:
1. Calls autoform_generate_batch with template name + data
→ Generates 50 PDFs

Fill interactive PDF forms (AcroForm)

You: "Detect and fill the fields in this form"

Claude:
1. Calls autoform_detect_fields → finds form fields
2. Calls autoform_fill_pdf with field values
→ Generates filled form

Distribution Modes

When a template has repeated fields (e.g., 3 fields named "nombre"):

  • sequential (default): Each field consumes a different data row. 9 rows + 3 fields = 3 documents.
  • repeat: One row fills ALL fields with the same name. 9 rows = 9 documents.

Storage

All data is stored in ~/.autoform-mcp/ on the user's machine:

~/.autoform-mcp/
├── templates/    ← Saved templates (JSON + PDF files)
└── output/       ← Generated PDFs
  • Windows: C:\Users\<name>\.autoform-mcp\
  • macOS/Linux: ~/.autoform-mcp/

You can override the output path in any tool using the output_path or output_dir parameter.

How It Works

  • Uses pdf-lib for PDF manipulation (no external services)
  • All processing happens locally — no data leaves your machine
  • Zero vulnerabilities — only 3 dependencies

License

MIT