docura-mcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# docura-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/docura-mcp)
|
|
4
|
+
|
|
5
|
+
A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for the [Docura](https://docura.com) e-signature platform. Connect Claude Code, Cursor, or any MCP-compatible AI client to your Docura account and manage documents via natural language.
|
|
4
6
|
|
|
5
7
|
No build step required — `npx` downloads and runs it automatically.
|
|
6
8
|
|
|
@@ -40,7 +42,7 @@ Add the server to `.claude/settings.local.json` in your project:
|
|
|
40
42
|
"args": ["-y", "docura-mcp"],
|
|
41
43
|
"env": {
|
|
42
44
|
"DOCURA_API_KEY": "sk_live_your_key_here",
|
|
43
|
-
"DOCURA_BASE_URL": "https://
|
|
45
|
+
"DOCURA_BASE_URL": "https://docura.com"
|
|
44
46
|
}
|
|
45
47
|
}
|
|
46
48
|
}
|
|
@@ -68,7 +70,7 @@ Then use `"command": "docura-mcp"` (no `args`) in your MCP config instead of the
|
|
|
68
70
|
| `DOCURA_API_KEY` | Yes | — | API key from Docura Settings → API Keys |
|
|
69
71
|
| `DOCURA_BASE_URL` | No | `http://localhost:3000` | Base URL of your Docura instance |
|
|
70
72
|
|
|
71
|
-
Set `DOCURA_BASE_URL` to
|
|
73
|
+
Set `DOCURA_BASE_URL` to `https://docura.com` for production, or `http://localhost:3000` for local development.
|
|
72
74
|
|
|
73
75
|
## Available tools
|
|
74
76
|
|
|
@@ -143,7 +145,7 @@ Returns a URL and curl command for downloading the completed signed PDF. The sub
|
|
|
143
145
|
Response:
|
|
144
146
|
```json
|
|
145
147
|
{
|
|
146
|
-
"downloadUrl": "https://
|
|
148
|
+
"downloadUrl": "https://docura.com/api/v1/submissions/sub_xyz789/download",
|
|
147
149
|
"instructions": "curl -H \"Authorization: Bearer $DOCURA_API_KEY\" \"...\" -o signed.pdf"
|
|
148
150
|
}
|
|
149
151
|
```
|
package/package.json
CHANGED