venafi-integration-core 2.1.0 → 2.1.1

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 +15 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,30 +25,16 @@ Use this with Claude Code or any MCP-compatible AI assistant to get expert guida
25
25
 
26
26
  ### Quick Install (Claude Code CLI)
27
27
 
28
- ```bash
29
- # Add to your project
30
- claude mcp add venafi-integration-core -- npx -y venafi-integration-core
31
-
32
- # Or add for all projects (user-level)
33
- claude mcp add -s user venafi-integration-core -- npx -y venafi-integration-core
34
- ```
35
-
36
- Then add the sibling MCPs for your integration type:
28
+ Install the core plus the MCPs for your integration type:
37
29
 
38
30
  ```bash
31
+ claude mcp add venafi-integration-core -- npx -y venafi-integration-core # Required for all types
39
32
  claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine # Machine connector
40
33
  claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca # CA connector
41
34
  claude mcp add venafi-adaptable-app -- npx -y venafi-adaptable-app # Adaptable driver
42
35
  ```
43
36
 
44
- **Add everything** (copy-paste to install the full suite):
45
-
46
- ```bash
47
- claude mcp add venafi-integration-core -- npx -y venafi-integration-core
48
- claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine
49
- claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca
50
- claude mcp add venafi-adaptable-app -- npx -y venafi-adaptable-app
51
- ```
37
+ To install user-level (available across all projects), add `-s user` after `mcp add`.
52
38
 
53
39
  ### Manual Setup
54
40
 
@@ -60,6 +46,18 @@ Add to your project's `.claude/settings.json`:
60
46
  "venafi-integration-core": {
61
47
  "command": "npx",
62
48
  "args": ["-y", "venafi-integration-core"]
49
+ },
50
+ "venafi-connector-machine": {
51
+ "command": "npx",
52
+ "args": ["-y", "venafi-connector-machine"]
53
+ },
54
+ "venafi-connector-ca": {
55
+ "command": "npx",
56
+ "args": ["-y", "venafi-connector-ca"]
57
+ },
58
+ "venafi-adaptable-app": {
59
+ "command": "npx",
60
+ "args": ["-y", "venafi-adaptable-app"]
63
61
  }
64
62
  }
65
63
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venafi-integration-core",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
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",