venafi-cloud-ca 2.0.1 → 2.0.3

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 +12 -14
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # venafi-connector-ca
1
+ # venafi-cloud-ca
2
2
 
3
- An MCP (Model Context Protocol) server that provides CA connector-specific knowledge, templates, and tools for building **Venafi TLS Protect Cloud CA connectors**.
3
+ An MCP (Model Context Protocol) server that provides CA connector-specific knowledge, templates, and tools for building **Venafi CA connectors**.
4
4
 
5
5
  Use this with Claude Code or any MCP-compatible AI assistant to get expert guidance on Certificate Authority integrations — issuance flows, certificate import, revocation, and all the gotchas.
6
6
 
@@ -44,12 +44,9 @@ Use this with Claude Code or any MCP-compatible AI assistant to get expert guida
44
44
  ### Quick Install (Claude Code CLI)
45
45
 
46
46
  ```bash
47
- # Add to your project
48
- claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca
49
-
50
- # Best used alongside the core MCP
51
- claude mcp add venafi-connector-core -- npx -y venafi-connector-core
52
- claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca
47
+ # Add to your project (best used alongside the core MCP)
48
+ claude mcp add venafi-integration-core -- npx -y venafi-integration-core
49
+ claude mcp add venafi-cloud-ca -- npx -y venafi-cloud-ca
53
50
  ```
54
51
 
55
52
  ### Manual Setup
@@ -59,13 +56,13 @@ Alternatively, add to your project's `.claude/settings.json`:
59
56
  ```json
60
57
  {
61
58
  "mcpServers": {
62
- "venafi-connector-core": {
59
+ "venafi-integration-core": {
63
60
  "command": "npx",
64
- "args": ["-y", "venafi-connector-core"]
61
+ "args": ["-y", "venafi-integration-core"]
65
62
  },
66
- "venafi-connector-ca": {
63
+ "venafi-cloud-ca": {
67
64
  "command": "npx",
68
- "args": ["-y", "venafi-connector-ca"]
65
+ "args": ["-y", "venafi-cloud-ca"]
69
66
  }
70
67
  }
71
68
  }
@@ -85,8 +82,9 @@ Knowledge extracted from building the **DigiCert ONE CA connector**, covering:
85
82
 
86
83
  ## Related Packages
87
84
 
88
- - [`venafi-connector-core`](https://www.npmjs.com/package/venafi-connector-core) — Shared architecture, templates, deployment, troubleshooting
89
- - [`venafi-connector-machine`](https://www.npmjs.com/package/venafi-connector-machine) — Machine connector endpoints, SSH/REST client patterns
85
+ - [`venafi-integration-core`](https://www.npmjs.com/package/venafi-integration-core) — Shared architecture, templates, deployment, troubleshooting
86
+ - [`venafi-cloud-machine`](https://www.npmjs.com/package/venafi-cloud-machine) — Machine connector endpoints, SSH/REST client patterns
87
+ - [`venafi-tpp-app`](https://www.npmjs.com/package/venafi-tpp-app) — Adaptable app driver templates, field definitions, PowerShell patterns
90
88
 
91
89
  ## License
92
90
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "venafi-cloud-ca",
3
- "version": "2.0.1",
4
- "description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi TLS Protect Cloud CA connectors",
3
+ "version": "2.0.3",
4
+ "description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi CA connectors",
5
5
  "main": "bundle.mjs",
6
6
  "type": "module",
7
7
  "bin": {