The SignaTrust MCP Server enables AI assistants to manage the full lifecycle of legally binding document signing via the SignaTrust API through natural language. Key capabilities include:
Envelope Management: Create and send signing envelopes, list and filter them by status (DRAFT, SENT, NEEDS_SIGNATURE, COMPLETED, VOIDED, DECLINED), retrieve full details, and void in-progress envelopes.
Document Handling: Upload local files (PDF, DOCX, or images) to obtain document IDs for envelope creation, and download completed documents.
Template Utilization: List available system and user-created templates to streamline envelope creation.
Security Tiers: Support for three signing security levels:
STANDARD– Bearer token onlyVERIFIED– Adds SMS/email OTP (suitable for employment, vendor, or healthcare contracts)CERTIFIED– Adds WebAuthn biometric + device binding (for real estate, high-value, or regulated signings)
Blockchain Verification: Verify completed envelopes via Solana blockchain anchoring, returning composite hash, file hash, transaction ID, and an explorer URL for independent proof of integrity.
AI Contract Analysis: Run Gemini-powered analysis on envelope documents, returning risk assessments, flagged clauses, and an overall sentiment rating (SAFE / CAUTION / RISKY). Requires a Pro Lite plan or above.
Evidentiary Support: Retrieve court-ready evidence bundles including audit trails and blockchain verification.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SignaTrust MCP ServerSend the lease agreement to john@email.com for signing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@signatrust/mcp-server
Model Context Protocol (MCP) server for the SignaTrust document signing API. Enables AI assistants like Claude to create envelopes, manage templates, check signing status, and verify blockchain anchors via natural language.
Quick Start
Claude Code
claude mcp add signatrust -- npx -y @signatrust/mcp-serverThen set your API key in the MCP server environment.
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"signatrust": {
"command": "npx",
"args": ["-y", "@signatrust/mcp-server"],
"env": {
"SIGNATRUST_API_KEY": "sk_live_your_key_here"
}
}
}
}Related MCP server: SignForge
Available Tools
Tool | Description | Required Scope |
| List envelopes with status filter and pagination |
|
| Get full envelope details (signers, docs, blockchain) |
|
| Create and send envelope for signing. Accepts |
|
| List available document templates |
|
| Read a local file and upload it to SignaTrust, returning a document ID for |
|
| Get a time-limited pre-signed URL to download a document (e.g. the executed PDF) |
|
| Run AI contract analysis on an envelope (Gemini-powered risk/sentiment review, plan-gated) |
|
| Verify Solana anchor and return composite hash + file hash + explorer URL |
|
| Get the full court-ready evidence bundle (envelope, signers, audit trail, blockchain verification) |
|
Three-tier security. create_envelope accepts securityLevel: STANDARD (bearer token only), VERIFIED (adds SMS/email OTP — recommended for employment, vendor, or healthcare consent), or CERTIFIED (adds WebAuthn biometric + device binding — recommended for real estate, high-value, or regulatory signings).
API Key Scopes
Create an API key at Settings > API Keys in your SignaTrust dashboard. Assign scopes based on what tools you need:
Scope | Tools Enabled |
| list_envelopes, get_envelope, verify_blockchain, get_evidence |
| create_envelope |
| list_templates |
| upload_document |
| download_document |
| analyze_document |
Environment Variables
Variable | Required | Default | Description |
| Yes | - | API key starting with |
| No |
| API base URL |
Natural Language Examples
Once connected, you can ask your AI assistant things like:
"List all my pending envelopes"
"Upload ~/Documents/nda.pdf and send it to alice@example.com with VERIFIED security"
"Show me available templates, then create a lease agreement from the residential template for John Doe"
"Check the blockchain verification for envelope env_abc123 and show me the composite hash"
"Run AI analysis on envelope env_xyz — I want to know if there are any risky clauses before the signer reviews it"
Development
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run tests with coverage
npm run test:coverage
# Type check
npm run typecheck
# Local smoke test
SIGNATRUST_API_KEY=sk_live_xxx SIGNATRUST_API_URL=http://localhost:3000 node dist/server.jsArchitecture
src/
server.ts # Entry point — env validation, MCP server setup, stdio transport
handlers.ts # Tool definitions and handler dispatch (testable)
errors.ts # RFC 7807 ProblemDetails -> MCP tool error mapping
vendor/signatrust-sdk/ # Vendored HTTP client + types (zero external runtime deps)
*.test.ts # Co-located test filesThe HTTP client and API types are vendored under src/vendor/signatrust-sdk/ so
this package has no external runtime dependencies beyond @modelcontextprotocol/sdk.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SignaTrustDev/signatrust-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
