trackmcp
Back to directory

MCP server for Signb.ee — document signing for AI agents. Gives Claude, Cursor, and Windsurf the ability to send contracts for two-party e-signing with a single tool call. Markdown in, SHA-256 certified signed PDF out. https://signb.ee

0 stars TypeScriptOthers Updated Sep 4, 2026
ai-agentsdocument-signinge-signaturesllms-txtmcpmodel-context-protocol

Documentation

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`:

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:

json
{
  "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
`markdown`Document content in markdown format
`sender_name`Full name of the sender
`sender_email`Email address of the sender
`recipient_name`Full name of the recipient
`recipient_email`Email address of the recipient
`title`Document title (auto-extracted from heading)
`expires_in_days`Days 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_url`Publicly accessible URL to the PDF
`title`Document title
`sender_name`Full name of the sender
`sender_email`Email address of the sender
`recipient_name`Full name of the recipient
`recipient_email`Email address of the recipient
`expires_in_days`Days 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

License

MIT

Frequently asked questions

What is mcp?

mcp is MCP server for Signb.ee — document signing for AI agents. Gives Claude, Cursor, and Windsurf the ability to send contracts for two-party e-signing with a single tool call. Markdown in, SHA-256 certified signed PDF out. https://signb.ee

How do I install mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is mcp open source?

Yes — it is hosted on GitHub at https://github.com/signbee/mcp.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP