venafi-integration-core 2.0.2 → 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.
- package/README.md +13 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# venafi-integration-core
|
|
2
2
|
|
|
3
|
-
An MCP (Model Context Protocol) server that provides shared knowledge, templates, and tools for building **Venafi integrations** — both **
|
|
3
|
+
An MCP (Model Context Protocol) server that provides shared knowledge, templates, and tools for building **Venafi integrations** — both **connectors** (Go) and **adaptable drivers** (PowerShell).
|
|
4
4
|
|
|
5
5
|
Use this with Claude Code or any MCP-compatible AI assistant to get expert guidance on integration architecture, project scaffolding, deployment, and troubleshooting.
|
|
6
6
|
|
|
@@ -35,19 +35,19 @@ claude mcp add -s user venafi-integration-core -- npx -y venafi-integration-core
|
|
|
35
35
|
|
|
36
36
|
For full coverage, add the sibling MCPs relevant to your integration type:
|
|
37
37
|
|
|
38
|
-
**
|
|
38
|
+
**Machine connector:**
|
|
39
39
|
```bash
|
|
40
40
|
claude mcp add venafi-integration-core -- npx -y venafi-integration-core
|
|
41
41
|
claude mcp add venafi-cloud-machine -- npx -y venafi-cloud-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
47
|
claude mcp add venafi-cloud-ca -- npx -y venafi-cloud-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
53
|
claude mcp add venafi-tpp-app -- npx -y venafi-tpp-app
|
|
@@ -70,16 +70,16 @@ Add to your project's `.claude/settings.json`:
|
|
|
70
70
|
|
|
71
71
|
## Venafi Integration Types
|
|
72
72
|
|
|
73
|
-
###
|
|
73
|
+
### Connectors (Go)
|
|
74
74
|
|
|
75
|
-
A Venafi
|
|
75
|
+
A Venafi connector is a containerized Go REST service that runs on a Venafi vSatellite. It acts as middleware between Venafi TLS Protect Cloud and an external system:
|
|
76
76
|
|
|
77
77
|
- **Machine connectors** discover and provision TLS certificates on target systems (servers, load balancers, network appliances)
|
|
78
78
|
- **CA connectors** integrate with Certificate Authorities for certificate issuance, import, and revocation
|
|
79
79
|
|
|
80
|
-
###
|
|
80
|
+
### Adaptable Drivers (PowerShell)
|
|
81
81
|
|
|
82
|
-
A Venafi
|
|
82
|
+
A Venafi adaptable driver is a PowerShell `.ps1` script that runs directly on the TPP server. It implements 4 functions to manage certificates on a target platform:
|
|
83
83
|
|
|
84
84
|
- **Test-Settings** — validate connectivity and credentials
|
|
85
85
|
- **Discover-Certificates** — enumerate all certificates on the target, return PEM + metadata
|
|
@@ -90,21 +90,21 @@ A Venafi TPP adaptable driver is a PowerShell `.ps1` script that runs directly o
|
|
|
90
90
|
|
|
91
91
|
This knowledge base was built from hands-on experience developing production integrations:
|
|
92
92
|
|
|
93
|
-
**
|
|
93
|
+
**Connectors:**
|
|
94
94
|
- **Splunk** (SSH machine connector)
|
|
95
95
|
- **FortiGate** (REST API machine connector)
|
|
96
96
|
- **IBM API Connect** (REST API machine connector)
|
|
97
97
|
- **IBM DataPower** (REST API machine connector)
|
|
98
98
|
- **DigiCert ONE** (CA connector)
|
|
99
99
|
|
|
100
|
-
**
|
|
100
|
+
**Adaptable drivers:**
|
|
101
101
|
- **Aruba ClearPass 6.11.x** (REST API adaptable app driver)
|
|
102
102
|
|
|
103
103
|
## Related Packages
|
|
104
104
|
|
|
105
|
-
- [`venafi-cloud-machine`](https://www.npmjs.com/package/venafi-cloud-machine) — Machine connector
|
|
106
|
-
- [`venafi-cloud-ca`](https://www.npmjs.com/package/venafi-cloud-ca) — CA connector
|
|
107
|
-
- [`venafi-tpp-app`](https://www.npmjs.com/package/venafi-tpp-app) —
|
|
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
|
|
108
108
|
|
|
109
109
|
## License
|
|
110
110
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "venafi-integration-core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"description": "MCP server providing shared knowledge, templates, and tools for building Venafi integrations (Cloud connectors and TPP adaptable drivers)",
|
|
5
5
|
"main": "bundle.mjs",
|
|
6
6
|
"type": "module",
|