venafi-connector-ca 1.0.4 → 2.0.0
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 +7 -9
- package/bundle.mjs +8 -8
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# venafi-connector-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,11 +44,8 @@ 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
|
|
47
|
+
# Add to your project (best used alongside the core MCP)
|
|
48
|
+
claude mcp add venafi-integration-core -- npx -y venafi-integration-core
|
|
52
49
|
claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca
|
|
53
50
|
```
|
|
54
51
|
|
|
@@ -59,9 +56,9 @@ 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
63
|
"venafi-connector-ca": {
|
|
67
64
|
"command": "npx",
|
|
@@ -85,8 +82,9 @@ Knowledge extracted from building the **DigiCert ONE CA connector**, covering:
|
|
|
85
82
|
|
|
86
83
|
## Related Packages
|
|
87
84
|
|
|
88
|
-
- [`venafi-
|
|
85
|
+
- [`venafi-integration-core`](https://www.npmjs.com/package/venafi-integration-core) — Shared architecture, templates, deployment, troubleshooting
|
|
89
86
|
- [`venafi-connector-machine`](https://www.npmjs.com/package/venafi-connector-machine) — Machine connector endpoints, SSH/REST client patterns
|
|
87
|
+
- [`venafi-adaptable-app`](https://www.npmjs.com/package/venafi-adaptable-app) — Adaptable app driver templates, field definitions, PowerShell patterns
|
|
90
88
|
|
|
91
89
|
## License
|
|
92
90
|
|
package/bundle.mjs
CHANGED
|
@@ -32477,43 +32477,43 @@ var server = new McpServer({
|
|
|
32477
32477
|
name: "venafi-connector-ca",
|
|
32478
32478
|
version: "1.0.0"
|
|
32479
32479
|
});
|
|
32480
|
-
server.resource("ca-blueprint", "ca
|
|
32480
|
+
server.resource("ca-blueprint", "venafi://connector-ca/blueprint", {
|
|
32481
32481
|
description: "Complete architecture guide for Venafi CA connectors \u2014 8 endpoints, connection/product models, issuance flows, import pagination, revocation, REST client patterns, manifest schema",
|
|
32482
32482
|
mimeType: "text/markdown"
|
|
32483
32483
|
}, async () => ({
|
|
32484
32484
|
contents: [
|
|
32485
32485
|
{
|
|
32486
|
-
uri: "ca
|
|
32486
|
+
uri: "venafi://connector-ca/blueprint",
|
|
32487
32487
|
text: CA_BLUEPRINT,
|
|
32488
32488
|
mimeType: "text/markdown"
|
|
32489
32489
|
}
|
|
32490
32490
|
]
|
|
32491
32491
|
}));
|
|
32492
|
-
server.resource("ca-lessons-learned", "ca
|
|
32492
|
+
server.resource("ca-lessons-learned", "venafi://connector-ca/lessons-learned", {
|
|
32493
32493
|
description: "Hard-won lessons from building the DigiCert ONE CA connector \u2014 CSR handling, certificate formats, API gotchas, error handling, rate limiting",
|
|
32494
32494
|
mimeType: "text/markdown"
|
|
32495
32495
|
}, async () => ({
|
|
32496
32496
|
contents: [
|
|
32497
32497
|
{
|
|
32498
|
-
uri: "ca
|
|
32498
|
+
uri: "venafi://connector-ca/lessons-learned",
|
|
32499
32499
|
text: CA_LESSONS_LEARNED,
|
|
32500
32500
|
mimeType: "text/markdown"
|
|
32501
32501
|
}
|
|
32502
32502
|
]
|
|
32503
32503
|
}));
|
|
32504
|
-
server.resource("ca-manifest-template", "ca
|
|
32504
|
+
server.resource("ca-manifest-template", "venafi://connector-ca/manifest-template", {
|
|
32505
32505
|
description: "Complete CA connector manifest.json template with all domain schemas, hooks, and localization \u2014 ready to customize for any CA provider",
|
|
32506
32506
|
mimeType: "application/json"
|
|
32507
32507
|
}, async () => ({
|
|
32508
32508
|
contents: [
|
|
32509
32509
|
{
|
|
32510
|
-
uri: "ca
|
|
32510
|
+
uri: "venafi://connector-ca/manifest-template",
|
|
32511
32511
|
text: CA_MANIFEST_TEMPLATE,
|
|
32512
32512
|
mimeType: "application/json"
|
|
32513
32513
|
}
|
|
32514
32514
|
]
|
|
32515
32515
|
}));
|
|
32516
|
-
server.resource("ca-templates-list", "ca-
|
|
32516
|
+
server.resource("ca-templates-list", "venafi://connector-ca/templates-list", {
|
|
32517
32517
|
description: "Index of all available CA connector code templates with descriptions and target paths",
|
|
32518
32518
|
mimeType: "text/markdown"
|
|
32519
32519
|
}, async () => {
|
|
@@ -32538,7 +32538,7 @@ ${lines.join("\n")}
|
|
|
32538
32538
|
return {
|
|
32539
32539
|
contents: [
|
|
32540
32540
|
{
|
|
32541
|
-
uri: "ca-
|
|
32541
|
+
uri: "venafi://connector-ca/templates-list",
|
|
32542
32542
|
text,
|
|
32543
32543
|
mimeType: "text/markdown"
|
|
32544
32544
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "venafi-connector-ca",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi CA connectors",
|
|
5
5
|
"main": "bundle.mjs",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
"mcp",
|
|
21
21
|
"model-context-protocol",
|
|
22
22
|
"venafi",
|
|
23
|
-
"tls-protect-cloud",
|
|
24
23
|
"ca-connector",
|
|
25
24
|
"certificate-authority",
|
|
26
25
|
"certificate-issuance",
|
|
@@ -31,7 +30,7 @@
|
|
|
31
30
|
"license": "Apache-2.0",
|
|
32
31
|
"repository": {
|
|
33
32
|
"type": "git",
|
|
34
|
-
"url": "https://github.com/abhadfield/venafi-
|
|
33
|
+
"url": "https://github.com/abhadfield/venafi-integration-mcps"
|
|
35
34
|
},
|
|
36
35
|
"dependencies": {
|
|
37
36
|
"@modelcontextprotocol/sdk": "^1.12.1"
|