Back to MCP directory
publicPublicdnsLocal runtime

docusign-navigator-mcp

这是一个连接AI助手与Docusign Navigator的MCP服务器,允许用户通过自然语言查询和分析电子协议,无需直接操作复杂API或手动搜索。

article

README

🚀 DocuSign Navigator MCP 服务器

DocuSign Navigator MCP 服务器是一个模型上下文协议(MCP)服务器,它能将你的 AI 助手连接到 DocuSign Navigator。你可以使用自然语言查询和分析 DocuSign 协议,无需复杂的 API 或手动搜索。

🚀 快速开始

所需条件

  • 拥有 Navigator 访问权限的活跃 DocuSign 账户
  • 兼容的 AI 客户端(如 Claude Desktop、安装了 MCP 扩展的 VS Code 等)
  • 互联网连接

操作步骤

1. 添加到你的 AI 客户端

服务器已部署,可通过以下地址使用:https://docusign-navigator.thisdot.co/mcp

选择你使用的 AI 客户端:

Claude Desktop

将以下内容添加到你的 Claude Desktop 配置文件中:

{
  "mcpServers": {
    "docusign-navigator": {
      "command": "mcp-server-fetch",
      "args": ["https://docusign-navigator.thisdot.co/mcp"]
    }
  }
}
Visual Studio Code
  1. 打开命令面板:Ctrl + Shift + P / Cmd + Shift + P
  2. 输入:mcp: add server
  3. 选择 HTTP (HTTP or Server - Sent Events)
  4. 输入:https://docusign-navigator.thisdot.co/mcp
其他 MCP 客户端

将以下内容添加到你的配置中:

{
  "servers": {
    "docusign-navigator": {
      "url": "https://docusign-navigator.thisdot.co/mcp",
      "type": "http"
    }
  }
}

2. 连接你的 DocuSign 账户

当你首次使用 DocuSign 命令时,系统会提示你进行身份验证:

  1. 你的 AI 客户端将提供一个授权链接
  2. 点击链接登录到 DocuSign
  3. 授权此连接
  4. 返回你的 AI 客户端,你就可以开始使用了!

3. 开始使用自然语言

尝试使用以下示例查询与你的 AI 助手进行交互:

"Show me my Docusign agreements"
"Tell me about agreement [ID]"
"Find contracts with ABC Company"
"What agreements are pending signature?"

✨ 主要特性

  • 自然语言访问:你可以像询问 “Show me my pending contracts” 或 “Find agreements with XYZ Corp” 这样提出问题。
  • AI 驱动的洞察:让你的 AI 助手分析协议详情、状态和元数据。
  • 安全连接:OAuth 2.0 身份验证确保你的 DocuSign 数据安全。
  • 无需代码:可直接与兼容的 AI 工具(如 Claude Desktop 和 VS Code)配合使用。

💻 使用示例

示例对话

你:"Show me my Docusign agreements"
AI:"You have 3 agreements:
     • Service Agreement with XYZ Corp (pending signature)
     • NDA with ABC Inc (completed)
     • Consulting Contract (in review)"

你:"Tell me more about the Service Agreement"
AI:"The Service Agreement with XYZ Corp was created on January 15th
     and is currently pending signature. It includes standard service
     terms and payment schedules."

📚 详细文档

可执行操作

你的 AI 助手将具备以下功能:

检查认证状态

  • "Am I connected to Docusign?"
  • "Check my authentication status"

列出协议

  • "Show me all my agreements"
  • "What contracts do I have?"
  • "List my Docusign documents"

获取协议详情

  • "Tell me about agreement [ID]"
  • "Show me details for contract [ID]"

搜索协议

  • "Find service agreements"
  • "Search for contracts with ABC Company"
  • "Show me expired agreements"

🔒 安全与隐私

你的数据安全有保障:

  • OAuth 2.0 身份验证:采用行业标准的安全认证方式。
  • 无数据存储:你的协议不会存储在我们的服务器上。
  • 直接 API 访问:与你的 DocuSign 账户实时连接。
  • 可撤销访问:你可以随时通过 DocuSign 设置断开连接。

🔧 故障排除

无法连接?

  1. 验证你的 DocuSign 账户是否具有 Navigator 访问权限。
  2. 检查你是否完成了 OAuth 授权。
  3. 尝试使用 “Check authentication status” 命令。
  4. 确保你的 AI 客户端支持 MCP HTTP 传输。

没有显示协议?

  1. 确认你在 DocuSign Navigator 中拥有协议。
  2. 检查你的账户是否启用了 Navigator。
  3. 尝试重新进行身份验证。

仍需帮助?

🤝 贡献

如果你想做出贡献或运行自己的实例,请参阅我们的 贡献指南,其中包含开发设置、架构细节和部署说明。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client