If you're integrating SignNow's e-signature API into your application, this server gives Claude direct access to SignNow's API documentation and can generate code examples for common operations like document uploads, signature requests, and workflow tracking. It currently exposes one tool for fetching API reference documentation, which means Claude can look up endpoints, parameters, and authentication methods without you leaving your conversation. Reach for this when you're building document signing flows and need quick answers about SignNow's API structure, error codes, or implementation patterns. It's essentially an AI-powered SignNow API reference that lives in your MCP-enabled editor.
An MCP server for SignNow API helper tools (stdio only).
mcp-name: io.github.signnow/sn-api-helper-mcp
The SignNow API Helper MCP server is a custom Model Context Protocol server designed specifically to assist with SignNow API integration. It acts as an intelligent assistant that understands the SignNow API ecosystem to provide contextual help for developers.
Core Functions:
Use Cases:
To install locally for development:
pip install -e .
You can run the server using Python or uvx:
Method 1: Python modulepython -m sn_api_helper_mcp serve
Method 2: Installed CLI entry pointsn-api-helper-mcp serve
Method 3: UVX uvx sn-api-helper-mcp
You can use this server with any MCP client. Below are the configurations for the most popular IDEs and apps.
To use SignNow tools directly inside the Claude app:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonmcpServers object:{
"mcpServers": {
"signnow-api-helper": {
"command": "uvx",
"args": [
"sn-api-helper-mcp"
]
}
}
}
Cursor supports MCP natively.
Cmd/Ctrl + ,).mcpServers object:{
"mcpServers": {
"signnow-api-helper": {
"command": "uvx",
"args": ["sn-api-helper-mcp"]
}
}
}
VS Code uses the Cline extension (or similar MCP clients) to interact with MCP servers.
{
"signnow-api-helper": {
"command": "uvx",
"args": [
"sn-api-helper-mcp"
]
}
}
get_signnow_api_info - Fetching API reference documentation.