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