MCP Catalogs
Home

sn-mcp-server

by signnow·6·Score 40

SignNow's official MCP server providing secure e-signature workflows, templates, and document management for AI agents.

productivitydeveloper-toolscommunication
3
Forks
3
Open issues
1 mo ago
Last commit
2d ago
Indexed

Overview

This MCP server enables AI agents to interact with SignNow's e-signature platform, allowing them to access templates, send invites, track signature status, and download documents. It supports both STDIO and HTTP transports, making it flexible for various deployment scenarios. The server implements proper authentication with both username/password and OAuth options, ensuring secure integration with the SignNow API.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Automating document signing workflows in AI applications
you:AI assistants managing document templates and status tracking
you:Embedded signing experiences in AI-powered document management systems
you:What authentication methods are supported?
you:Can I run this MCP server in a Docker container?

When to choose this

Choose this MCP server when your AI agent needs to interact with electronic signature workflows and you're already using or evaluating SignNow as your e-signature provider.

When NOT to choose this

Avoid if you need to integrate with non-SignNow e-signature providers or if you prefer a more general-purpose document automation solution that isn't tied to a specific vendor.

Tools this server exposes

12 tools extracted from the README
  • list_all_templates

    List templates & template groups with simplified metadata.

  • list_contacts

    Search CRM contacts by name, email, or phone.

  • list_documents

    Browse documents, document groups and statuses.

  • create_from_template

    Create a document or group from a template/group.

  • create_template

    Convert a document or group into a reusable template.

  • send_invite

    Email invites for documents or groups with ordered recipients.

  • create_embedded_invite

    Create embedded signing session without email delivery.

  • create_embedded_sending

    Create embedded sending/management experience.

  • create_embedded_editor

    Create embedded editor link to place/adjust fields.

  • get_invite_status

    Check invite status and steps for document or group.

  • get_document_download_link

    Get direct download link for documents or groups.

  • upload_document

    Upload a document from file path, URL, or resource attachment.

Comparable tools

docusign-mcppandaDoc-mcpcontract-mcpdocuments-mcp

Installation

Installation

Quick Installation (uvx)

uvx --from signnow-mcp-server sn-mcp serve

Installation via PyPI

pip install signnow-mcp-server
sn-mcp serve

Claude Desktop Configuration

{
  "mcpServers": {
    "signnow": {
      "command": "sn-mcp",
      "args": ["serve"],
      "env": {
        "SIGNNOW_USER_EMAIL": "${env:SIGNNOW_USER_EMAIL}",
        "SIGNNOW_PASSWORD": "${env:SIGNNOW_PASSWORD}",
        "SIGNNOW_API_BASIC_TOKEN": "${env:SIGNNOW_API_BASIC_TOKEN}"
      }
    }
  }
}

FAQ

What authentication methods are supported?
The server supports both username/password authentication and OAuth 2.0. Username/password is recommended for development, while OAuth is better for production scenarios.
Can I run this MCP server in a Docker container?
Yes, the server can be run via Docker. Use the provided Dockerfile or docker-compose configuration for easy deployment, with HTTP transport being recommended for containerized environments.

Compare sn-mcp-server with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.