No install? Use cloud.anythingmcp.com directly.
Sign in, install the SignWell in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Drive SignWell (developer-friendly e-signature) from any AI agent: documents, templates, signature requests, signers. 8 tools, API key + application ID auth.
💡 No install? Use cloud.anythingmcp.com directly. Sign in, click Connectors → SignWell, paste your credentials, mint an MCP API key — done. No Docker, no
git clone, no local server.
SignWell + Gemini
Drive SignWell (developer-friendly e-signature) from any AI agent: documents, templates, signature requests, signers. 8 tools, API key + application ID auth.
Prerequisites
See the full setup instructions baked into the connector (visible in the in-app store when you select the connector). The required environment variables for this connector are:
SIGNWELL_API_KEY, SIGNWELL_APPLICATION_ID
Step 1 — Get credentials
signwell.com).
Setup:
- Sign in to https://app.signwell.com → top-right avatar → API → Create application.
- Note the Application ID and API Key.
- Set:
SIGNWELL_API_KEY= the API keySIGNWELL_APPLICATION_ID= the application ID
Authentication: header X-Api-Key: ${SIGNWELL_API_KEY} + X-Api-Application: ${SIGNWELL_APPLICATION_ID} (both required).
test_mode: every write endpoint accepts test_mode=true to validate without sending real emails or burning credits.
Document workflow: create document from URL/upload → status='Sent' → recipients sign → status='Completed' → download PDF.
…(continued in the in-app connector instructions)
Step 2 — Install the adapter
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
Step 3 — Add the connector in Gemini
Gemini CLI reads MCP servers from ~/.gemini/settings.json (or %APPDATA%\gemini\settings.json on Windows). Add:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- Get your MCP API key from AnythingMCP → Profile → MCP API Keys → New Key.
- Save the file and restart
gemini. - Run
/mcpinside the Gemini CLI —SignWellshould be listed as available. - Vertex AI Studio: pass
https://cloud.anythingmcp.com/mcpto thetoolsarray of your request with the same Bearer header.
Available tools
| Tool | What it does |
|---|---|
signwell_list_documents | List documents with filters |
signwell_get_document | Fetch a document by ID with recipients + signing status |
signwell_create_document_from_url | Create a document from public file URLs and send for signature |
signwell_create_document_from_template | Create a document from a SignWell template + recipient mapping |
signwell_send_reminder | Send a reminder email to pending recipients on a document |
signwell_cancel_document | Cancel a document (no further signing) |
signwell_get_document_files | Get URLs of the document's signed files |
signwell_list_templates | List templates available on the account |
FAQ
Does Gemini 1.5 Pro or 2.x support MCP? Yes — Gemini CLI ≥ 0.4 and Vertex AI tools API both accept MCP httpUrl connectors with Bearer headers.
Next steps
Was this guide helpful?