BoldSign AI Assistant
Chat with the BoldSign AI AssistantOverview
Let your AI agents send, track, and manage eSignature workflows by connecting to BoldSign's hosted MCP server that works with Claude, ChatGPT, coding editors, and autonomous agent pipelines.
The BoldSign MCP server exposes BoldSign's eSignature API as a set of tools that AI agents can call via the Model Context Protocol (MCP). Connect any compatible client to a hosted regional endpoint, authenticate, and your agent can immediately send documents from templates, monitor signing status, manage contacts, users, and teams through natural language.
Fully hosted. BoldSign provides a managed, cloud-hosted MCP server in each supported region. There is no local server process to install or maintain. Your client connects directly to the regional URL over HTTPS.
Connect to the BoldSign MCP Server
BoldSign's hosted MCP server works with AI chat interfaces, coding editors, and autonomous agent pipelines. Select a client below for setup instructions:
- Claude - Add as a remote connector in Claude Web via OAuth, while Claude Code is a strong fit for API key-based
.mcp.jsonsetup - ChatGPT - Add as a custom connector in ChatGPT Pro, Plus, Business, or Enterprise.
- GitHub Copilot - Visual Studio Code uses MCP configuration and API key authentication for the most direct setup path
If you use another MCP-compatible client that supports remote HTTP transport and custom headers, you can generally connect it with the BoldSign MCP endpoint and an X-API-Key header.
Production regional endpoints
Choose the endpoint that matches the region of your BoldSign account. This is the canonical endpoint list for the BoldSign MCP Server documentation.
| Region | MCP endpoint |
|---|---|
| US | https://mcp.boldsign.com/mcp |
| EU | https://mcp-eu.boldsign.com/mcp |
| CA | https://mcp-ca.boldsign.com/mcp |
| AU | https://mcp-au.boldsign.com/mcp |
If you connect to the wrong region, authentication or downstream BoldSign requests can fail because the MCP endpoint, authorization system, and API region must align.
Authentication at a glance
The hosted BoldSign MCP Server supports two authentication models on every regional endpoint.
| Method | Best for | What the client sends |
|---|---|---|
| API key | Coding editors, MCP clients that support custom headers, and autonomous agent workflows | X-API-Key: <your-api-key> |
| OAuth | Clients with built-in remote sign-in flows such as Claude Web and ChatGPT | Authorization: Bearer <access-token> |
Open Authentication for the full setup guidance, redirect URI details, and security considerations.
What tools does it provide?
The hosted BoldSign MCP Server provides a focused set of tools for the most common account and signing workflows.
Documents
list_documents- list documents in your accountlist_team_documents- list documents available through team-level accessget_document_properties- retrieve document details, status, and related metadatasend_reminder_for_document_sign- send reminder emails for pending signature requestsrevoke_document- cancel an in-progress document so it can no longer be signed
Templates
list_templates- browse templates in your BoldSign accountget_template_properties- retrieve the details of a specific templatesend_document_from_template- create and send a signature request from an existing template
Contacts
list_contacts- list saved contactsget_contact- retrieve a specific contact's details
Users
list_users- list users in your organizationget_user- retrieve details for a specific user
Teams
list_teams- list teams in your organizationget_team- retrieve details for a specific team
Building autonomous agents
For server-to-server workflows that run without a human in the loop, pass your BoldSign API key as the X-API-Key header in every request. The hosted MCP server is stateless and does not distinguish between interactive and automated callers.
Example read-first prompts:
List all templates and show which ones were used most recently.Which documents sent this week still have pending signers?Who are the members of the Legal team in my BoldSign organization?
Example action-oriented prompts:
Send the NDA template to Sarah Nguyen at [email protected] and set expiry to 30 days.Send reminders to all signers who have not completed the vendor agreement.
For workflows that send documents, revoke documents, or trigger reminders, consider requiring a human confirmation step before execution, especially when the BoldSign MCP Server is used alongside other tools or MCP servers.
Key requirements and limitations
Before you connect a client, keep these points in mind:
- The MCP endpoint must match your BoldSign account region.
- Use the dedicated client guides so the region, authentication flow, and setup steps stay aligned to that client.
- Requests that originate from a browser are rejected. This protects against exposing API keys or OAuth tokens in browser contexts.
- For a first validation, prefer read-only prompts before relying on mutating tools.
Next steps
- Review Authentication to choose between API key and OAuth