eSignatures
About
Integrates with the eSignatures.com API to simplify contract and document management, enabling creation, querying, and handling of digital contracts and signatures.
Details
- Author
- esignaturescom
- Repository
- esignaturescom/mcp-server-esignatures
- GitHub stars
- 13
- Downloads
- 156
- License
- MIT License
- Categories
- Productivity, Other, Automation, Developer Tools, Design, Workplace, File Management, AI, Search, Infrastructure
- Tags
- #integration
Jump to
- Create, query, withdraw, and delete contracts
- Add, update, resend, and delete contract signers
- Query and update placeholder fields on active contracts
- Retrieve and edit contract content in Markdown format
- Create, update, query, and delete contract templates
- Manage template collaborators (invite, remove, list)
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
eSignaturesCommand (node, npx, python, etc.)uvArguments-
Argument 1
--directory -
Argument 2
/your-local-directories/mcp-server-esignatures -
Argument 3
run -
Argument 4
mcp-server-esignatures
Environment-
ESIGNATURES_SECRET_TOKEN
your-esignatures-api-secret-token
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
"mcpServers": {
"mcp-server-esignatures": {
"command": "uv",
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"--directory",
"/your-local-directories/mcp-server-esignatures",
"run",
"mcp-server-esignatures"
]
}
}
"mcpServers": {
"mcp-server-esignatures": {
"command": "uvx",
"args": [
"mcp-server-esignatures"
],
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
}
}
}
To use this server, you need to set the ESIGNATURES_SECRET_TOKEN environment variable with your eSignatures.com API secret token.
create_contract
Draft for review or send contract
query_contract
Retrieve contract info
withdraw_contract
Withdraw an active contract
delete_contract
Delete a draft or test contract
list_recent_contracts
List the recent contracts
add_contract_signer
Add a signer to an existing contract
update_contract_signer
Update an existing signer's contact details
resend_contract_signer_request
Send or resend the sign request to a signer
delete_contract_signer
Remove a signer from a contract
query_contract_placeholder_fields
Get a contract's placeholder field values
update_contract_placeholder_fields
Update an active contract's placeholder fields
query_contract_content
Get a contract's content in Markdown format
update_contract_content
Edit an active contract's body via find/replace
create_template
Create a new contract template (Markdown body)
update_template
Update an existing template's title/labels
update_template_content
Edit a template's Markdown body via find/replace
query_template
Retrieve template metadata
query_template_content
Retrieve a template's Markdown body
delete_template
Delete a template
list_templates
List all your templates
add_template_collaborator
Invite someone to edit a template
remove_template_collaborator
Revoke template editing rights
list_template_collaborators
View who can edit a template
| Tool | Category | Description |
|--------------------------------------|---------------|--------------------------------------------------|
| create_contract | Contracts | Draft for review or send contract |
| query_contract | Contracts | Retrieve contract info |
| withdraw_contract | Contracts | Withdraw an active contract |
| delete_contract | Contracts | Delete a draft or test contract |
| list_recent_contracts | Contracts | List the recent contracts |
| | | |
| add_contract_signer | Signers | Add a signer to an existing contract |
| update_contract_signer | Signers | Update an existing signer's contact details |
| resend_contract_signer_request | Signers | Send or resend the sign request to a signer |
| delete_contract_signer | Signers | Remove a signer from a contract |
| | | |
| query_contract_placeholder_fields | Placeholders | Get a contract's placeholder field values |
| update_contract_placeholder_fields | Placeholders | Update an active contract's placeholder fields |
| | | |
| query_contract_content | Content | Get a contract's content in Markdown format |
| update_contract_content | Content | Edit an active contract's body via find/replace |
| | | |
| create_template | Templates | Create a new contract template (Markdown body) |
| update_template | Templates | Update an existing template's title/labels |
| update_template_content | Templates | Edit a template's Markdown body via find/replace |
| query_template | Templates | Retrieve template metadata |
| query_template_content | Templates | Retrieve a template's Markdown body |
| delete_template | Templates | Delete a template |
| list_templates | Templates | List all your templates |
| | | |
| add_template_collaborator | Collaborators | Invite someone to edit a template |
| remove_template_collaborator | Collaborators | Revoke template editing rights |
| list_template_collaborators | Collaborators | View who can edit a template |
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"esignatures": {
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"--directory",
"/your-local-directories/mcp-server-esignatures",
"run",
"mcp-server-esignatures"
],
"command": "uv"
}
}
}
Linux
{
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"--directory",
"/your-local-directories/mcp-server-esignatures",
"run",
"mcp-server-esignatures"
],
"command": "uv"
}
Macos
{
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"--directory",
"/your-local-directories/mcp-server-esignatures",
"run",
"mcp-server-esignatures"
],
"command": "uv"
}
Windows
{
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"mcp-server-esignatures"
],
"command": "uvx"
}
mcp-server-esignatures
The most developer- and AI-friendly electronic signature platform.
Traditional eSignature tools lock you into rigid, static PDF files.
eSignatures.com takes a different approach — contracts remain fully editable, Markdown-based content throughout their entire lifecycle, making them effortless for developers, automation systems, and AI agents to create, understand, modify, and manage.
This MCP server gives AI agents (such as Claude) real-time access to the complete eSignatures API, enabling:
Dynamic contract creation and editing — even after sending
Markdown-based content that AI can generate, understand, and update
End-to-end workflows: drafting → placeholder filling → sending → signing → amendments
Flexible templates and reusable contract workflows
- Signer management, notifications, and lifecycle automation
Built for intelligent, adaptive contract workflows — not outdated PDF-based signing.
Tools
| Tool | Category | Description |
|--------------------------------------|---------------|--------------------------------------------------|
| create_contract | Contracts | Draft for review or send contract |
| query_contract | Contracts | Retrieve contract info |
| withdraw_contract | Contracts | Withdraw an active contract |
| delete_contract | Contracts | Delete a draft or test contract |
| list_recent_contracts | Contracts | List the recent contracts |
| | | |
| add_contract_signer | Signers | Add a signer to an existing contract |
| update_contract_signer | Signers | Update an existing signer's contact details |
| resend_contract_signer_request | Signers | Send or resend the sign request to a signer |
| delete_contract_signer | Signers | Remove a signer from a contract |
| | | |
| query_contract_placeholder_fields | Placeholders | Get a contract's placeholder field values |
| update_contract_placeholder_fields | Placeholders | Update an active contract's placeholder fields |
| | | |
| query_contract_content | Content | Get a contract's content in Markdown format |
| update_contract_content | Content | Edit an active contract's body via find/replace |
| | | |
| create_template | Templates | Create a new contract template (Markdown body) |
| update_template | Templates | Update an existing template's title/labels |
| update_template_content | Templates | Edit a template's Markdown body via find/replace |
| query_template | Templates | Retrieve template metadata |
| query_template_content | Templates | Retrieve a template's Markdown body |
| delete_template | Templates | Delete a template |
| list_templates | Templates | List all your templates |
| | | |
| add_template_collaborator | Collaborators | Invite someone to edit a template |
| remove_template_collaborator | Collaborators | Revoke template editing rights |
| list_template_collaborators | Collaborators | View who can edit a template |
Examples
Creating a draft contract
Create a draft NDA for a publisher, ready for me to review and send. Signer: John Doe, ACME Corp, john@acme.com.
Sending a contract from a template
Send an NDA based on my template to John Doe from ACME Corp at john@acme.com. Set the term to 2 years.
Creating a new contract
Create a contractor agreement for a graphic designer, including payment terms of net 14 days. Prepare it as a draft for review. Signer: John Doe, ACME Corp, john@acme.com.
Adding a signer to a contract
Add Jane Smith from ACME Corp (jane@acme.com) as a signer on the NDA contract, then send her the signature request.
Editing an active contract's wording
On the NDA, change the rental term to 24 months and remove the jurisdiction section.
Editing an existing template
Update my NDA template to include a 12-month non-solicitation clause.
Reviewing templates
Review my templates and suggest improvements. Do not apply any changes until I approve them one by one.
Finding the right template
Find the best template for onboarding a contractor and prepare a draft contract for John Doe.
Managing contracts
Show me the recent contracts that are waiting for signatures.
Updating signer details
Update the signer email on the NDA contract for John Doe to john.doe@acme.com.
Inviting template collaborators
Invite John Doe to edit the NDA template. His email is john@acme.com.
Install
Create an eSignatures.com account
Create an eSignatures.com account at https://esignatures.com for free, to test the Agent AI by creating templates and sending test contracts.
Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Development/Unpublished Servers Configuration
"mcpServers": {
"mcp-server-esignatures": {
"command": "uv",
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
},
"args": [
"--directory",
"/your-local-directories/mcp-server-esignatures",
"run",
"mcp-server-esignatures"
]
}
}
Published Servers Configuration
"mcpServers": {
"mcp-server-esignatures": {
"command": "uvx",
"args": [
"mcp-server-esignatures"
],
"env": {
"ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"
}
}
}
Authentication
To use this server, you need to set the ESIGNATURES_SECRET_TOKEN environment variable with your eSignatures.com API secret token.
eSignatures.com API Documentation
For a detailed guide on API endpoints, parameters, and responses, see eSignatures.com API.
eSignatures.com Support
For support, please navigate to Support or contact support@esignatures.com.
Contributing
Contributions are welcome! If you'd like to contribute, please fork the repository and make changes as you see fit. Here are some guidelines:
- Bug Reports: Please open an issue to report any bugs you encounter.
- Feature Requests: Suggest new features by opening an issue with the "enhancement" label.
- Pull Requests: Ensure your pull request follows the existing code style.
- Documentation: Help improve or translate documentation. Any form of documentation enhancement is appreciated.
For major changes, please open an issue first to discuss what you would like to change. We're looking forward to your contributions!29:["$","div",
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.


