venafi-cloud-ca 2.0.1 → 2.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.
- package/README.md +12 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# venafi-
|
|
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
|
|
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-
|
|
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-
|
|
59
|
+
"venafi-integration-core": {
|
|
63
60
|
"command": "npx",
|
|
64
|
-
"args": ["-y", "venafi-
|
|
61
|
+
"args": ["-y", "venafi-integration-core"]
|
|
65
62
|
},
|
|
66
|
-
"venafi-
|
|
63
|
+
"venafi-cloud-ca": {
|
|
67
64
|
"command": "npx",
|
|
68
|
-
"args": ["-y", "venafi-
|
|
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-
|
|
89
|
-
- [`venafi-
|
|
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