venafi-connector-machine 1.0.0 → 1.0.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 +10 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -40,22 +40,20 @@ Covering SSH and REST API patterns from all machine connector projects:
40
40
 
41
41
  ## Setup
42
42
 
43
- ### Claude Code
43
+ ### Quick Install (Claude Code CLI)
44
44
 
45
- Add to your project's `.claude/settings.json`:
45
+ ```bash
46
+ # Add to your project
47
+ claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine
46
48
 
47
- ```json
48
- {
49
- "mcpServers": {
50
- "venafi-connector-machine": {
51
- "command": "npx",
52
- "args": ["-y", "venafi-connector-machine"]
53
- }
54
- }
55
- }
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
56
52
  ```
57
53
 
58
- Best used alongside the core MCP:
54
+ ### Manual Setup
55
+
56
+ Alternatively, add to your project's `.claude/settings.json`:
59
57
 
60
58
  ```json
61
59
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "venafi-connector-machine",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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",