
Aoexl Sign MCP
- Updated April 21, 2026
- aryansingh0203/aoexl-mcp
io.github.AryanSingh/aoexl-sign is a MCP server that lets agents create Aoexl signing requests, check status, send reminders, and manage templates.
About
Aoexl Sign (io.github.AryanSingh/aoexl-sign) connects e-signature operations to Model Context Protocol clients so founders can draft, send, and monitor agreements while building automation around sales and onboarding. Instead of context-switching into a separate dashboard for every NDA, contractor deal, or customer order form, agents can create signing requests, poll status, nudge signers, and maintain templates through structured tools. The server supports hosted streamable HTTP with Authorization headers or a local stdio npm package, which fits both cloud-first Cursor setups and Claude Code on a laptop. Canonical placement is grow lifecycle because signatures compound as you add customers and partners, though founders may use it for early founder agreements. You need an Aoexl account and API key; this is a live third-party service MCP, not offline PDF signing.
- Create signing requests and check completion status from MCP tools
- Send reminders to pending signers without leaving the agent session
- Manage Aoexl templates for repeatable agreements
- Remote streamable-http at mcp.aoexl.com/mcp or local stdio via aoexl-mcp npm
- Bearer API key from Aoexl Settings → MCP API Keys
Aoexl Sign MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add aoexl-mcp -- npx -y aoexl-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Package | aoexl-mcp |
|---|---|
| Transport | STDIO, HTTP |
| Auth | Required |
| Last updated | April 21, 2026 |
| Repository | aryansingh0203/aoexl-mcp ↗ |
What it does
Trigger Aoexl e-sign requests, track signer status, send reminders, and manage templates from your coding agent.
Who is it for?
Best when you already use or plan to use Aoexl and want agent-driven contract sends and follow-ups.
Skip if: Skip if you need only local PDF signatures with no cloud e-sign vendor or API budget.
What you get
Your agent can initiate and track Aoexl signatures from MCP so agreement workflows stay in the same automation thread as your product work.
- Agent-created signing requests linked to Aoexl
- Status visibility and reminder actions for pending signers
- Maintained Aoexl templates callable from automation
By the numbers
- Server version 0.2.3
- Dual transport: streamable-http remote and stdio npm aoexl-mcp
- Repository: github.com/aryansingh0203/aoexl-mcp
README.md
Aoexl MCP Connector
Small public wrapper package for connecting Claude Desktop, Cursor, and other MCP clients to the hosted Aoexl MCP endpoint at https://mcp.aoexl.com/mcp.
Install
AOEXL_API_KEY=your_key_here npx -y aoexl-mcp
The package starts a local stdio proxy via mcp-remote and forwards requests to the hosted Aoexl MCP server.
Claude Desktop
{
"mcpServers": {
"aoexl-sign": {
"command": "npx",
"args": ["-y", "aoexl-mcp"],
"env": {
"AOEXL_API_KEY": "YOUR_API_KEY"
}
}
}
}
Environment
AOEXL_API_KEY— required API key created in AoexlAOEXL_MCP_URL— optional override, defaults tohttps://mcp.aoexl.com/mcp
Publishing Metadata
- npm package:
aoexl-mcp - MCP registry name:
io.github.AryanSingh/aoexl-sign - Smithery server:
aryan/aoexl-sign
Recommended MCP Servers
How it compares
Aoexl e-sign API bridge via MCP, not a general PDF editor or in-repo legal template generator skill.
FAQ
Who is io.github.AryanSingh/aoexl-sign for?
Developers and small teams using Aoexl who want Claude Code, Cursor, or similar agents to run signing workflows.
When should I use io.github.AryanSingh/aoexl-sign?
Use it when you are sending customer agreements, contractor NDAs, or template-based deals and need status checks and reminders from an agent.
How do I add io.github.AryanSingh/aoexl-sign to my agent?
Add the remote MCP URL https://mcp.aoexl.com/mcp with Bearer your Aoexl API key, or install aoexl-mcp via npm for stdio and configure your client accordingly.