docura-mcp 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +6 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  # docura-mcp
2
2
 
3
- A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for the Docura e-signature platform. Connect Claude Code, Cursor, or any MCP-compatible AI client to your Docura account and manage documents via natural language.
3
+ [![npm](https://img.shields.io/npm/v/docura-mcp)](https://www.npmjs.com/package/docura-mcp)
4
+
5
+ A [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server for the [Docura](https://docura.cloud) 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://app.docura.com"
45
+ "DOCURA_BASE_URL": "https://docura.cloud"
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 your deployed URL (e.g. `https://app.docura.com`) for production use.
73
+ Set `DOCURA_BASE_URL` to `https://docura.cloud` 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://app.docura.com/api/v1/submissions/sub_xyz789/download",
148
+ "downloadUrl": "https://docura.cloud/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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docura-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for the Docura e-signature platform — manage documents from Claude Code, Cursor, or any MCP-compatible AI client",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",