1. Conduid
  2. Developer Tools
  3. Signaturit MCP
MCP server · Developer Tools

Signaturit MCP

MCP server that simplifies integration with Signaturit's e-signature API

Unclaimed Apache-2.0 last commit a year ago devtools
49Fair

Scored 4 months ago · breakdown

About Signaturit MCP

Signaturit MCP is an MCP server published by jmartin82 in the Developer Tools category: mCP server that simplifies integration with Signaturit's e-signature API. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx signaturit-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Signaturit MCP

Powered by Claude · Grounded in docs

I know everything about Signaturit MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Signaturit MCP ✍️

Note: This is an unofficial integration project and is not affiliated with, officially maintained, or endorsed by Signaturit.

This project is a demonstration of an MCP (Microservice Communication Protocol) server that integrates with Signaturit tools through their public API. It provides various functionalities for managing signature requests, including listing, creating, and handling signatures.

Capabilities 🚀

The MCP server provides the following tools to interact with Signaturit:

  • get_signature 📄: Retrieve details of a specific signature request using its ID
  • create_signature ✨: Create new signature requests using templates
    • Support for multiple signers 👥
    • Email or SMS delivery 📧 📱
    • Customizable expiration time ⏰
    • Sequential or parallel signing workflow ⛓️
    • Custom email/SMS messages 💬
    • Webhook integration for real-time notifications 🔔
  • send_signature_reminder 📬: Send reminder notifications to pending signers
  • cancel_signature ❌: Cancel active signature requests with optional reason

Project Structure 📁

  • cmd/server/main.go 🎯: Entry point of the application. It initializes and starts the MCP server.
  • internal/app/server.go ⚙️: Contains the logic for creating and configuring the MCP server, including registering signature tools and handlers.
  • internal/handlers/signature.go 🛠️: Implements handler functions for various signature operations such as listing, retrieving, and managing signatures.
  • internal/tools/signature.go 🔧: Registers signature-related tools with the MCP server.

Configuration ⚙️

API Authentication 🔐

This server integrates with the Signaturit API and requires an API key for authentication. You need to:

  1. Create an account at Signaturit
  2. Get your API key from the Signaturit dashboard
  3. Set the API key as an environment variable:
export SIGNATURIT_SECRET_TOKEN='your_api_key_here'

Prerequisites 📋

  1. Go Installation

    • Go 1.16 or higher
    • Verify your installation:
    go version
    
  2. Signaturit Account

    • Active account at Signaturit
    • Valid API key from the Signaturit dashboard

Build 🔨

  1. Clone the repository

    git clone https://github.com/yourusername/signaturtit_mcp.git
    cd signaturtit_mcp
    
  2. Install dependencies

    go mod download
    
  3. Build the application

    # Build for your current platform
    go build -o bin/signaturtit_mcp cmd/server/main.go
    
    # Build for specific platform (e.g., Linux)
    GOOS=linux GOARCH=amd64 go build -o bin/signaturtit_mcp cmd/server/main.go
    
  4. Run the built binary

    # Make sure you have set the required environment variables first
    export SIGNATURIT_SECRET_TOKEN='your_api_key_here'
    
    # Run the application
    ./bin/signaturtit_mcp
    

License 📜

Copyright 2024 Jordi Martin

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Signaturit MCP

How do I install Signaturit MCP?

Run npx signaturit-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Signaturit MCP safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Signaturit MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.