用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dvcrn/openclaw-skills-marketplace --skill docuseal命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | docuseal |
| description | Manage DocuSeal document templates and e-signatures. |
Manage document templates and e-signatures via the DocuSeal MCP endpoint.
export DOCUSEAL_URL="https://your-docuseal-instance.com"
export DOCUSEAL_MCP_TOKEN="your-mcp-token"
All requests use JSON-RPC 2.0 over HTTP POST to $DOCUSEAL_URL/mcp.
Requires Node.js 18+. No dependencies.
node scripts/cli.js init
node scripts/cli.js tools
node scripts/cli.js search-templates --q="contract" --limit=5
node scripts/cli.js create-template --url="https://example.com/document.pdf" --name="My Template"
node scripts/cli.js send-documents --template-id=1 --emails="signer@example.com,another@example.com"
node scripts/cli.js search-documents --q="john@example.com" --limit=5
Search document templates by name.
| Option | Type | Required | Description |
|---|---|---|---|
--q | string | yes | Search query to filter templates by name |
--limit | integer | no | The number of templates to return (default 10) |
Create a template from a PDF URL.
| Option | Type | Required | Description |
|---|---|---|---|
--url | string | yes | URL of the document file to upload |
--name | string | no | Template name (defaults to filename) |
Send a document template for signing to specified submitters.
| Option | Type | Required | Description |
|---|---|---|---|
--template-id | integer | yes | Template identifier |
--emails | string | yes | Comma-separated list of submitter email addresses |
Search signed or pending documents by submitter name, email, phone, or template name.
| Option | Type | Required | Description |
|---|---|---|---|
--q | string | yes | Search by submitter name, email, phone, or template name |
--limit | integer | no | The number of results to return (default 10) |
fetch, no dependencies)DOCUSEAL_URL and DOCUSEAL_MCP_TOKEN environment variables must be set