loading…
Search for a command to run...
loading…
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 c
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.
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.
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"
}
}
}
}
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.
send_documentSend a markdown document for two-party e-signing.
Parameters:
| Parameter | Required | Description |
|---|---|---|
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 [email protected] from [email protected]"
send_document_pdfSend an existing PDF for two-party e-signing.
Parameters:
| Parameter | Required | Description |
|---|---|---|
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) |
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"signbee-mcp": {
"command": "npx",
"args": []
}
}
}