npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

venafi-connector-ca

v1.0.4

Published

MCP server providing CA connector-specific knowledge, templates, and tools for building Venafi TLS Protect Cloud CA connectors

Readme

venafi-connector-ca

An MCP (Model Context Protocol) server that provides CA connector-specific knowledge, templates, and tools for building Venafi TLS Protect Cloud CA connectors.

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.

What's Inside

| Tool | Description | |---|---| | get_ca_manifest | Complete CA connector manifest.json template with all domain schemas | | get_ca_domain_types | Go domain types: Connection, Product, Order, Certificate, Import, Revocation | | get_ca_endpoints | Handler and service interface templates for all 8 endpoints | | get_ca_best_practices | Lessons learned from building the DigiCert ONE CA connector | | get_rest_client_pattern | REST client with auth header, retry on 429, URL normalization | | get_cert_issuance_pattern | Synchronous and asynchronous issuance flows | | get_cert_import_pattern | Paginated certificate import with string cursors | | get_csr_parsing_pattern | CSR attribute extraction and certificate parsing utilities |

8 CA Connector Endpoints

| Endpoint | Purpose | |---|---| | testConnection | Validate API credentials against the CA | | getOptions | List available certificate profiles/products | | validateProduct | Validate product configuration before issuance | | requestCertificate | Submit CSR to the CA for certificate issuance | | checkOrder | Poll status of pending certificate request | | checkCertificate | Retrieve issued certificate by identifier | | importCertificates | Paginated import of existing certificates | | revokeCertificate | Revoke a certificate |

Key Patterns

  • Synchronous issuance: Certificate returned immediately (auto-approved CAs)
  • Asynchronous issuance: Return pending status, poll via checkOrder/checkCertificate
  • Paginated import: Offset-based pagination with string cursors, expired cert filtering
  • Rate limiting: HTTP 429 retry with Retry-After header handling
  • CSR parsing: Subject DN + SAN extraction from PKCS#10 requests
  • Certificate output: Base64-encoded DER (no PEM headers) for Venafi

Setup

Quick Install (Claude Code CLI)

# Add to your project
claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca

# Best used alongside the core MCP
claude mcp add venafi-connector-core -- npx -y venafi-connector-core
claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca

Manual Setup

Alternatively, add to your project's .claude/settings.json:

{
  "mcpServers": {
    "venafi-connector-core": {
      "command": "npx",
      "args": ["-y", "venafi-connector-core"]
    },
    "venafi-connector-ca": {
      "command": "npx",
      "args": ["-y", "venafi-connector-ca"]
    }
  }
}

Built From Experience

Knowledge extracted from building the DigiCert ONE CA connector, covering:

  • REST API client with x-api-key authentication
  • Synchronous certificate issuance (auto-approve)
  • Paginated certificate import with offset/limit
  • Certificate revocation with reason code mapping
  • CSR format handling (PEM with headers)
  • Rate limit handling and retry logic
  • Product options mapping from CA profiles

Related Packages

License

Apache-2.0