What is the SignNow MCP Server MCP server?
A MCP server that gives AI agents access to SignNow eSignature workflows over STDIO.
How to install SignNow MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sn-mcp-server": {
"command": "uvx",
"args": [
"signnow-mcp-server"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"sn-mcp-server": {
"command": "uvx",
"args": [
"signnow-mcp-server"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"sn-mcp-server": {
"command": "uvx",
"args": [
"signnow-mcp-server"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"sn-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"signnow-mcp-server"
]
}
}
}Claude Code
claude mcp add sn-mcp-server -- uvx signnow-mcp-server