docura-mcp 1.0.1 → 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 +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/docura-mcp)](https://www.npmjs.com/package/docura-mcp)
4
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.
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.
6
6
 
7
7
  No build step required — `npx` downloads and runs it automatically.
8
8
 
@@ -42,7 +42,7 @@ Add the server to `.claude/settings.local.json` in your project:
42
42
  "args": ["-y", "docura-mcp"],
43
43
  "env": {
44
44
  "DOCURA_API_KEY": "sk_live_your_key_here",
45
- "DOCURA_BASE_URL": "https://docura.com"
45
+ "DOCURA_BASE_URL": "https://docura.cloud"
46
46
  }
47
47
  }
48
48
  }
@@ -70,7 +70,7 @@ Then use `"command": "docura-mcp"` (no `args`) in your MCP config instead of the
70
70
  | `DOCURA_API_KEY` | Yes | — | API key from Docura Settings → API Keys |
71
71
  | `DOCURA_BASE_URL` | No | `http://localhost:3000` | Base URL of your Docura instance |
72
72
 
73
- Set `DOCURA_BASE_URL` to `https://docura.com` for production, or `http://localhost:3000` for local development.
73
+ Set `DOCURA_BASE_URL` to `https://docura.cloud` for production, or `http://localhost:3000` for local development.
74
74
 
75
75
  ## Available tools
76
76
 
@@ -145,7 +145,7 @@ Returns a URL and curl command for downloading the completed signed PDF. The sub
145
145
  Response:
146
146
  ```json
147
147
  {
148
- "downloadUrl": "https://docura.com/api/v1/submissions/sub_xyz789/download",
148
+ "downloadUrl": "https://docura.cloud/api/v1/submissions/sub_xyz789/download",
149
149
  "instructions": "curl -H \"Authorization: Bearer $DOCURA_API_KEY\" \"...\" -o signed.pdf"
150
150
  }
151
151
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docura-mcp",
3
- "version": "1.0.1",
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",