MCP server for eSignatures (https://esignatures.com) Generate a draft NDA contract for a publisher, which I can review and send. Signer: John Doe, ACME Corp, john@acme.com Send an NDA based on my template to John Doe, ACME Corp, john@acme.com. Set the term to 2 years. Review my templates for legal compliance, and ask me about updating each one individually Invite John Doe to edit the NDA template,
Add this skill
npx mdskills install esignaturescom/mcp-server-esignaturesWell-organized eSignatures integration with comprehensive contract and template management tools
1# mcp-server-esignatures MCP server23MCP server for eSignatures (https://esignatures.com)45## Tools678| Tool | Category | Description |9|--------------------------------|---------------|------------------------------------|10| `create_contract` | Contracts | Draft for review or send contract |11| `query_contract` | Contracts | Retrieve contract info |12| `withdraw_contract` | Contracts | Withdraw an unsigned contract |13| `delete_contract` | Contracts | Delete a draft or test contract |14| `list_recent_contracts` | Contracts | List the recent contracts |15| | | |16| `create_template` | Templates | Create a new contract template |17| `update_template` | Templates | Update an existing template |18| `query_template` | Templates | Retrieve template content and info |19| `delete_template` | Templates | Delete a template |20| `list_templates` | Templates | List all your templates |21| | | |22| `add_template_collaborator` | Collaborators | Invite someone to edit a template |23| `remove_template_collaborator` | Collaborators | Revoke template editing rights |24| `list_template_collaborators` | Collaborators | View who can edit a template |252627## Examples2829#### Creating a Draft Contract3031`Generate a draft NDA contract for a publisher, which I can review and send. Signer: John Doe, ACME Corp, john@acme.com`3233#### Sending a Contract3435`Send an NDA based on my template to John Doe, ACME Corp, john@acme.com. Set the term to 2 years.`3637#### Updating templates3839`Review my templates for legal compliance, and ask me about updating each one individually`4041#### Inviting template collaborators4243`Invite John Doe to edit the NDA template, email: john@acme.com`444546## Install4748### Create an eSignatures account4950Create an eSignatures account at https://esignatures.com for free, to test the Agent AI by creating templates and sending test contracts.5152### Claude Desktop5354On MacOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`55On Windows: `%APPDATA%/Claude/claude_desktop_config.json`5657##### Development/Unpublished Servers Configuration58```59"mcpServers": {60 "mcp-server-esignatures": {61 "command": "uv",62 "env": {63 "ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"64 },65 "args": [66 "--directory",67 "/your-local-directories/mcp-server-esignatures",68 "run",69 "mcp-server-esignatures"70 ]71 }72}73```7475#### Published Servers Configuration76```77"mcpServers": {78 "mcp-server-esignatures": {79 "command": "uvx",80 "args": [81 "mcp-server-esignatures"82 ],83 "env": {84 "ESIGNATURES_SECRET_TOKEN": "your-esignatures-api-secret-token"85 }86 }87}88```8990### Authentication9192To use this server, you need to set the `ESIGNATURES_SECRET_TOKEN` environment variable with your eSignatures API secret token.9394## eSignatures API Documentation9596For a detailed guide on API endpoints, parameters, and responses, see [eSignatures API](https://esignatures.com/docs/api).9798## eSignatures Support99100For support, please navigate to [Support](https://esignatures.com/support) or contact [support@esignatures.com](mailto:support@esignatures.com).101102## Contributing103104Contributions are welcome! If you'd like to contribute, please fork the repository and make changes as you see fit. Here are some guidelines:105106- **Bug Reports**: Please open an issue to report any bugs you encounter.107- **Feature Requests**: Suggest new features by opening an issue with the "enhancement" label.108- **Pull Requests**: Ensure your pull request follows the existing code style.109- **Documentation**: Help improve or translate documentation. Any form of documentation enhancement is appreciated.110111For major changes, please open an issue first to discuss what you would like to change. We're looking forward to your contributions!112
Full transparency — inspect the skill content before installing.