venafi-integration-core 2.0.4 → 2.0.5

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 (3) hide show
  1. package/README.md +6 -6
  2. package/bundle.mjs +9 -9
  3. package/package.json +1 -2
package/README.md CHANGED
@@ -38,19 +38,19 @@ For full coverage, add the sibling MCPs relevant to your integration type:
38
38
  **Machine connector:**
39
39
  ```bash
40
40
  claude mcp add venafi-integration-core -- npx -y venafi-integration-core
41
- claude mcp add venafi-cloud-machine -- npx -y venafi-cloud-machine
41
+ claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine
42
42
  ```
43
43
 
44
44
  **CA connector:**
45
45
  ```bash
46
46
  claude mcp add venafi-integration-core -- npx -y venafi-integration-core
47
- claude mcp add venafi-cloud-ca -- npx -y venafi-cloud-ca
47
+ claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca
48
48
  ```
49
49
 
50
50
  **Adaptable app driver:**
51
51
  ```bash
52
52
  claude mcp add venafi-integration-core -- npx -y venafi-integration-core
53
- claude mcp add venafi-tpp-app -- npx -y venafi-tpp-app
53
+ claude mcp add venafi-adaptable-app -- npx -y venafi-adaptable-app
54
54
  ```
55
55
 
56
56
  ### Manual Setup
@@ -102,9 +102,9 @@ This knowledge base was built from hands-on experience developing production int
102
102
 
103
103
  ## Related Packages
104
104
 
105
- - [`venafi-cloud-machine`](https://www.npmjs.com/package/venafi-cloud-machine) — Machine connector endpoints, SSH/REST client patterns, discovery/provisioning
106
- - [`venafi-cloud-ca`](https://www.npmjs.com/package/venafi-cloud-ca) — CA connector endpoints, certificate issuance/import/revocation patterns
107
- - [`venafi-tpp-app`](https://www.npmjs.com/package/venafi-tpp-app) — Adaptable app driver templates, field definitions, PowerShell patterns
105
+ - [`venafi-connector-machine`](https://www.npmjs.com/package/venafi-connector-machine) — Machine connector endpoints, SSH/REST client patterns, discovery/provisioning
106
+ - [`venafi-connector-ca`](https://www.npmjs.com/package/venafi-connector-ca) — CA connector endpoints, certificate issuance/import/revocation patterns
107
+ - [`venafi-adaptable-app`](https://www.npmjs.com/package/venafi-adaptable-app) — Adaptable app driver templates, field definitions, PowerShell patterns
108
108
 
109
109
  ## License
110
110
 
package/bundle.mjs CHANGED
@@ -29954,8 +29954,8 @@ var CORE_BLUEPRINT = `
29954
29954
  This document captures the proven architecture, patterns, and structure shared by ALL Venafi TLS Protect Cloud connectors. It covers the foundational concepts that apply regardless of whether you are building a **machine connector** or a **CA connector**.
29955
29955
 
29956
29956
  For type-specific endpoint details, see the companion MCPs:
29957
- - **venafi-cloud-machine** \u2014 5 endpoints, SSH/API client, keystore/binding, discovery/provisioning
29958
- - **venafi-cloud-ca** \u2014 8 endpoints, REST API client, product options, certificate issuance/import/revocation
29957
+ - **venafi-connector-machine** \u2014 5 endpoints, SSH/API client, keystore/binding, discovery/provisioning
29958
+ - **venafi-connector-ca** \u2014 8 endpoints, REST API client, product options, certificate issuance/import/revocation
29959
29959
 
29960
29960
  ---
29961
29961
 
@@ -31173,8 +31173,8 @@ When starting a new connector project:
31173
31173
  4. Claude should create a CLAUDE.md file immediately (see template below)
31174
31174
  5. Claude should scaffold the entire project structure before implementing details
31175
31175
  6. For type-specific endpoint details, consult the companion MCP:
31176
- - Machine connectors: use the venafi-cloud-machine MCP
31177
- - CA connectors: use the venafi-cloud-ca MCP
31176
+ - Machine connectors: use the venafi-connector-machine MCP
31177
+ - CA connectors: use the venafi-connector-ca MCP
31178
31178
 
31179
31179
  ---
31180
31180
 
@@ -32248,7 +32248,7 @@ These files are shared across all connector types:
32248
32248
  8. \`internal/handler/web/web.go\` -- get_template("web.go") then customize for your connector type`);
32249
32249
  if (isMachine) {
32250
32250
  sections.push(`
32251
- ## Type-Specific Files (use venafi-cloud-machine MCP)
32251
+ ## Type-Specific Files (use venafi-connector-machine MCP)
32252
32252
 
32253
32253
  The machine connector MCP provides templates for:
32254
32254
  - SSH client implementation (client.go)
@@ -32258,10 +32258,10 @@ The machine connector MCP provides templates for:
32258
32258
  - Install helpers (PEM building, key type detection, backup)
32259
32259
  - Machine-specific web.go with all 5 endpoint routes
32260
32260
 
32261
- Consult the venafi-cloud-machine MCP for these templates.`);
32261
+ Consult the venafi-connector-machine MCP for these templates.`);
32262
32262
  } else if (isCA) {
32263
32263
  sections.push(`
32264
- ## Type-Specific Files (use venafi-cloud-ca MCP)
32264
+ ## Type-Specific Files (use venafi-connector-ca MCP)
32265
32265
 
32266
32266
  The CA connector MCP provides templates and guidance for:
32267
32267
  - REST API client with auth and rate limiting (service/rest.go)
@@ -32271,7 +32271,7 @@ The CA connector MCP provides templates and guidance for:
32271
32271
  - CSR parsing and attribute extraction patterns
32272
32272
  - Product options mapping patterns
32273
32273
 
32274
- Consult the venafi-cloud-ca MCP for these templates.`);
32274
+ Consult the venafi-connector-ca MCP for these templates.`);
32275
32275
  }
32276
32276
  sections.push(`
32277
32277
  ## Files to WRITE (target-specific -- no template)
@@ -32807,7 +32807,7 @@ These templates are shared across ALL Venafi connector types (machine and CA).
32807
32807
  Use the \`get_template\` tool to retrieve any template with placeholders filled in.
32808
32808
 
32809
32809
  For type-specific templates (SSH client, discovery types, REST client, etc.),
32810
- use the venafi-cloud-machine or venafi-cloud-ca MCP.
32810
+ use the venafi-connector-machine or venafi-connector-ca MCP.
32811
32811
 
32812
32812
  | Template Name | Target Path | Customizable | Description |
32813
32813
  |---|---|---|---|
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venafi-integration-core",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "MCP server providing shared knowledge, templates, and tools for building Venafi integrations (connectors and adaptable drivers)",
5
5
  "main": "bundle.mjs",
6
6
  "type": "module",
@@ -20,7 +20,6 @@
20
20
  "mcp",
21
21
  "model-context-protocol",
22
22
  "venafi",
23
- "tls-protect-cloud",
24
23
  "tpp",
25
24
  "connector",
26
25
  "adaptable-driver",