MCP Hub
Back to servers

signbee-mcp

Document signing for AI agents. Send markdown or PDF for two-party e-signing with a single tool call — handles PDF generation, email verification, and SHA-256 certified delivery.

glama
Forks
1
Updated
Mar 13, 2026

Signbee MCP Server

Document signing for AI agents — as an MCP tool.

Send, sign, and verify documents with a single tool call. Works with Claude, Cursor, Windsurf, and any MCP-compatible client.

Quick Setup

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "signbee": {
      "command": "npx",
      "args": ["-y", "signbee-mcp"],
      "env": {
        "SIGNBEE_API_KEY": "your-api-key-from-signb.ee/dashboard"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "signbee": {
    "command": "npx",
    "args": ["-y", "signbee-mcp"],
    "env": {
      "SIGNBEE_API_KEY": "your-api-key"
    }
  }
}

Note: The API key is optional. Without it, the sender verifies via email OTP. With it, documents are sent instantly.

Tools

send_document

Send a markdown document for two-party e-signing.

Parameters:

ParameterRequiredDescription
markdownDocument content in markdown format
sender_nameFull name of the sender
sender_emailEmail address of the sender
recipient_nameFull name of the recipient
recipient_emailEmail address of the recipient
titleDocument title (auto-extracted from heading)
expires_in_daysDays until signing link expires (default: 7)

Example prompt: "Send an NDA to bob@acme.com from alice@company.com"

send_document_pdf

Send an existing PDF for two-party e-signing.

Parameters:

ParameterRequiredDescription
pdf_urlPublicly accessible URL to the PDF
titleDocument title
sender_nameFull name of the sender
sender_emailEmail address of the sender
recipient_nameFull name of the recipient
recipient_emailEmail address of the recipient
expires_in_daysDays until signing link expires (default: 7)

How It Works

  1. You ask your AI to send a document for signing
  2. The MCP server calls the Signbee API
  3. Signbee converts markdown → PDF, handles the signing ceremony
  4. Both parties receive a SHA-256 certified signed copy via email

Get Your API Key

  1. Go to signb.ee
  2. Create an account
  3. Navigate to the Dashboard
  4. Copy your API key

Links

License

MIT

Reviews

No reviews yet

Sign in to write a review

signbee-mcp — MCP Server | MCP Hub