venafi-connector-ca 1.0.4 → 2.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 (3) hide show
  1. package/README.md +7 -9
  2. package/bundle.mjs +14 -14
  3. 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 TLS Protect Cloud CA connectors**.
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-connector-ca -- npx -y venafi-connector-ca
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-connector-core": {
59
+ "venafi-integration-core": {
63
60
  "command": "npx",
64
- "args": ["-y", "venafi-connector-core"]
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-connector-core`](https://www.npmjs.com/package/venafi-connector-core) — Shared architecture, templates, deployment, troubleshooting
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-connector://docs/blueprint", {
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-connector://docs/blueprint",
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-connector://docs/lessons-learned", {
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-connector://docs/lessons-learned",
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-connector://templates/manifest", {
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-connector://templates/manifest",
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-connector://templates/list", {
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 () => {
@@ -32529,8 +32529,8 @@ Use the tools to retrieve templates with placeholders filled in.
32529
32529
  ${lines.join("\n")}
32530
32530
 
32531
32531
  ## Placeholder Values
32532
- - \`<CONNECTOR_NAME>\` \u2014 Your connector name (e.g., "digicert-one-ca-connector")
32533
- - \`<CONNECTOR_MODULE>\` \u2014 Go module path (e.g., "github.com/venafi/digicert-one-ca-connector")
32532
+ - \`<CONNECTOR_NAME>\` \u2014 Your connector name (e.g., "venafi-connector-digicert-one")
32533
+ - \`<CONNECTOR_MODULE>\` \u2014 Go module path (e.g., "github.com/venafi/venafi-connector-digicert-one")
32534
32534
  - \`<CA_NAME>\` \u2014 CA provider name (e.g., "DigiCert ONE")
32535
32535
  - \`<AUTH_HEADER>\` \u2014 Authentication header name (e.g., "x-api-key")
32536
32536
  - \`<API_BASE_PATH>\` \u2014 CA API base path (e.g., "/mpki/api/v1")
@@ -32538,7 +32538,7 @@ ${lines.join("\n")}
32538
32538
  return {
32539
32539
  contents: [
32540
32540
  {
32541
- uri: "ca-connector://templates/list",
32541
+ uri: "venafi://connector-ca/templates-list",
32542
32542
  text,
32543
32543
  mimeType: "text/markdown"
32544
32544
  }
@@ -32556,8 +32556,8 @@ server.tool("get_ca_manifest", "Get the complete CA connector manifest.json temp
32556
32556
  ]
32557
32557
  }));
32558
32558
  server.tool("get_ca_domain_types", "Get all CA connector domain types: Connection, Product, ProductOption, ProductDetails, OrderDetails, CertificateDetails, ImportOption, ImportConfiguration, ImportDetails, CertificateRevocationData, RevocationDetails.", {
32559
- connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'digicert-one-ca-connector'). Replaces <CONNECTOR_NAME>."),
32560
- modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/digicert-one-ca-connector'). Replaces <CONNECTOR_MODULE>."),
32559
+ connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'venafi-connector-digicert-one'). Replaces <CONNECTOR_NAME>."),
32560
+ modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/venafi-connector-digicert-one'). Replaces <CONNECTOR_MODULE>."),
32561
32561
  caName: external_exports3.string().optional().describe("CA provider name (e.g., 'DigiCert ONE'). Replaces <CA_NAME>.")
32562
32562
  }, async (args) => ({
32563
32563
  content: [
@@ -32569,8 +32569,8 @@ server.tool("get_ca_domain_types", "Get all CA connector domain types: Connectio
32569
32569
  }));
32570
32570
  server.tool("get_ca_endpoints", "Get handler/service interface templates for CA connector endpoints. Returns all 8 endpoint handlers plus service interfaces, or a specific endpoint.", {
32571
32571
  endpoint: external_exports3.string().optional().describe("Specific endpoint to retrieve: testconnection, getoptions, validateproduct, requestcertificate, checkorder, checkcertificate, importcertificates, revokecertificate. Omit for all endpoints."),
32572
- connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'digicert-one-ca-connector'). Replaces <CONNECTOR_NAME>."),
32573
- modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/digicert-one-ca-connector'). Replaces <CONNECTOR_MODULE>."),
32572
+ connectorName: external_exports3.string().optional().describe("Connector name (e.g., 'venafi-connector-digicert-one'). Replaces <CONNECTOR_NAME>."),
32573
+ modulePath: external_exports3.string().optional().describe("Go module path (e.g., 'github.com/venafi/venafi-connector-digicert-one'). Replaces <CONNECTOR_MODULE>."),
32574
32574
  caName: external_exports3.string().optional().describe("CA provider name (e.g., 'DigiCert ONE'). Replaces <CA_NAME>.")
32575
32575
  }, async (args) => ({
32576
32576
  content: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "venafi-connector-ca",
3
- "version": "1.0.4",
4
- "description": "MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi TLS Protect Cloud CA connectors",
3
+ "version": "2.0.1",
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-connector-mcps"
33
+ "url": "https://github.com/abhadfield/venafi-integration-mcps"
35
34
  },
36
35
  "dependencies": {
37
36
  "@modelcontextprotocol/sdk": "^1.12.1"