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.
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:
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 READMElist_all_templatesList templates & template groups with simplified metadata.
list_contactsSearch CRM contacts by name, email, or phone.
list_documentsBrowse documents, document groups and statuses.
create_from_templateCreate a document or group from a template/group.
create_templateConvert a document or group into a reusable template.
send_inviteEmail invites for documents or groups with ordered recipients.
create_embedded_inviteCreate embedded signing session without email delivery.
create_embedded_sendingCreate embedded sending/management experience.
create_embedded_editorCreate embedded editor link to place/adjust fields.
get_invite_statusCheck invite status and steps for document or group.
get_document_download_linkGet direct download link for documents or groups.
upload_documentUpload a document from file path, URL, or resource attachment.
Comparable tools
Installation
Installation
Quick Installation (uvx)
uvx --from signnow-mcp-server sn-mcp serveInstallation via PyPI
pip install signnow-mcp-server
sn-mcp serveClaude 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
Last updated · Auto-generated from public README + GitHub signals.