Connects Claude to Aoexl's document signing API through a lightweight stdio proxy that forwards requests to their hosted MCP endpoint. You get tools for creating signature requests, checking signing status, sending reminders to signers, and working with Aoexl templates. Requires an AOEXL_API_KEY from your Aoexl account. The package uses mcp-remote under the hood, so you're running a local bridge to their remote server rather than embedding the full integration logic. Reach for this when you want Claude to handle document workflows without leaving the conversation, like drafting an agreement and immediately routing it for signatures or following up on pending documents.
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.
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.
{
"mcpServers": {
"aoexl-sign": {
"command": "npx",
"args": ["-y", "aoexl-mcp"],
"env": {
"AOEXL_API_KEY": "YOUR_API_KEY"
}
}
}
}
AOEXL_API_KEY — required API key created in AoexlAOEXL_MCP_URL — optional override, defaults to https://mcp.aoexl.com/mcpaoexl-mcpio.github.AryanSingh/aoexl-signaryan/aoexl-sign