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

@marcelocorrea/mcp-zapsign

v2.0.0

Published

MCP Server for ZapSign - Electronic signature platform API integration

Readme

@marcelocorrea/mcp-zapsign

MCP Server for ZapSign - Electronic signature platform API integration.

This MCP server allows Claude and other AI assistants to interact with the ZapSign API for managing electronic document signatures.

Installation

npm install -g @marcelocorrea/mcp-zapsign

Or install locally in your project:

npm install @marcelocorrea/mcp-zapsign

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ZAPSIGN_API_TOKEN | Yes | Your ZapSign API token | | ZAPSIGN_SANDBOX | No | Set to true to use sandbox environment |

Getting your API Token

  1. Log in to your ZapSign account at app.zapsign.com.br
  2. Go to Settings > Integrations > API
  3. Copy your API token

For testing, use the sandbox environment at sandbox.app.zapsign.com.br

Usage with Claude Desktop

Add this configuration 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": {
    "zapsign": {
      "command": "npx",
      "args": ["@marcelocorrea/mcp-zapsign"],
      "env": {
        "ZAPSIGN_API_TOKEN": "your-api-token-here",
        "ZAPSIGN_SANDBOX": "true"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "zapsign": {
      "command": "mcp-zapsign",
      "env": {
        "ZAPSIGN_API_TOKEN": "your-api-token-here",
        "ZAPSIGN_SANDBOX": "true"
      }
    }
  }
}

Available Tools

Account Management

| Tool | Description | |------|-------------| | zapsign_get_plan_info | Get information about the current plan and account | | zapsign_list_users | List all users in the account | | zapsign_create_user | Create a new user | | zapsign_delete_user | Delete a user |

Document Management

| Tool | Description | |------|-------------| | zapsign_create_document | Create a new document for signing | | zapsign_create_document_from_template | Create a document from a template | | zapsign_get_document | Get document details | | zapsign_list_documents | List all documents | | zapsign_delete_document | Delete a document | | zapsign_cancel_document | Cancel a document | | zapsign_get_document_history | Get document activity history | | zapsign_add_attachment | Add an attachment to a document |

Signer Management

| Tool | Description | |------|-------------| | zapsign_get_signer | Get signer details | | zapsign_update_signer | Update signer information | | zapsign_add_signer | Add a new signer to a document | | zapsign_delete_signer | Remove a signer | | zapsign_send_notification | Send notification to a signer |

Template Management

| Tool | Description | |------|-------------| | zapsign_list_templates | List all templates | | zapsign_get_template | Get template details | | zapsign_delete_template | Delete a template |

Webhook Management

| Tool | Description | |------|-------------| | zapsign_create_webhook | Create a webhook | | zapsign_delete_webhook | Delete a webhook |

Examples

Creating a document with Claude

Claude, create a document for electronic signature with the following details:
- Name: "Service Contract"
- PDF URL: https://example.com/contract.pdf
- Signer: John Smith, email: [email protected]
- Send automatic email notification

Checking document status

Claude, check the status of document with token "abc123..."

Creating document from template

Claude, create a document from template "xyz789..." for Maria Silva ([email protected])
with the following data:
- CLIENT_NAME: Maria Silva
- CONTRACT_VALUE: R$ 5.000,00

Authentication Modes

ZapSign supports various authentication modes for signers:

| Mode | Description | Cost | |------|-------------|------| | assinaturaTela | Screen signature | Free | | tokenEmail | Email token verification | Free | | assinaturaTela-tokenEmail | Screen + Email token | Free | | tokenSms | SMS token verification | R$ 0.10 | | assinaturaTela-tokenSms | Screen + SMS token | R$ 0.10 | | tokenWhatsapp | WhatsApp token verification | 5 credits | | assinaturaTela-tokenWhatsapp | Screen + WhatsApp token | 5 credits | | certificadoDigital | Digital certificate | 5 credits |

Document Status

  • pending: Document is awaiting signatures
  • signed: All signers have signed the document

Signer Status

  • new: Signer was created
  • link-opened: Signer opened the signing link
  • signed: Signer completed the signature

Error Handling

The MCP server returns errors in the following format:

{
  "content": [
    {
      "type": "text",
      "text": "Error: ZapSign API Error: 400 - {\"detail\": \"error message\"}"
    }
  ],
  "isError": true
}

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

MIT

Related Documentation