🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

sn-api-helper-mcp

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sn-api-helper-mcp

MCP server for SignNow API helper tools (stdio only).

pipPyPI
Version
0.1.1
Weekly downloads
77
Maintainers
2

PyPI License

SignNow Api Helper MCP

MCP server for SignNow API helper tools (stdio only).

mcp-name: io.github.signnow/sn-api-helper-mcp

Installation

pip install -e .

Run

python -m sn_api_helper_mcp serve

or

sn-api-helper-mcp serve

or

uvx sn-api-helper-mcp

🔌 Integrations & Setup

You can use this server with any MCP client. Below are the configurations for the most popular IDEs and apps.

1. Claude Desktop

To use SignNow tools directly inside Claude app:

  • Open your config file:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Add the following to the mcpServers object:
{
  "mcpServers": {
    "signnow-api-helper": {
      "command": "uvx",
      "args": ["sn-api-helper-mcp"]
    }
  }
}

  • Restart Claude Desktop.

2. Cursor AI

Cursor now supports MCP natively.

  • Open Cursor Settings (Cmd/Ctrl + ,).
  • Go to Features > MCP Servers.
  • Click + Add New MCP Server.
  • Add the following to the mcpServers object:
{
  "mcpServers": {
    "signnow-api-helper": {
      "command": "uvx",
      "args": ["sn-api-helper-mcp"]
    }
  }
}

3. Visual Studio Code (via Cline)

VS Code uses the Cline extension (or similar MCP clients) to interact with MCP servers.

  • Install the Cline extension from the VS Code Marketplace.
  • Open Cline settings (click the gear icon inside the Cline chat window) -> MCP Servers.
  • Add the configuration JSON:
{
  "signnow-api-helper": {
      "command": "uvx",
      "args": ["sn-api-helper-mcp"]
    }
}

Features

  • Transport: stdio only
  • Tools: get_signnow_api_info - Get information about SignNow API

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts