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-integration-core

v2.1.1

Published

MCP server providing shared knowledge, templates, and tools for building Venafi integrations (connectors and adaptable drivers)

Readme

venafi-integration-core

An MCP (Model Context Protocol) server that provides shared knowledge, templates, and tools for building Venafi integrations — both connectors (Go) and adaptable drivers (PowerShell).

Use this with Claude Code or any MCP-compatible AI assistant to get expert guidance on integration architecture, project scaffolding, deployment, and troubleshooting.

What's Inside

| Tool | Description | |---|---| | get_template | Go code templates: go.mod, main.go, app.go, web.go, Makefile, Dockerfile, golangci.yaml, .gitignore | | scaffold_project | Complete project structure showing every file needed for a new connector or adaptable driver | | get_guidance | Focused guidance on: architecture, manifest, testing, deployment, troubleshooting, certificate-formats, common-mistakes, container-registry, bootstrap | | get_core_patterns | DI wiring, handler pattern, payload encryption, error handling, logging |

| Resource | Description | |---|---| | Core Blueprint | Architecture, project structure, dependencies shared by all integrations | | Deployment Guide | Container registry, vSatellite, build/push, plugin registration, troubleshooting | | Known Gaps | 19 documented Venafi platform behaviors learned from production integrations | | Bootstrap Guide | Step-by-step new project setup from Phase 0 (registry) to Phase 5 (deploy) | | Manifest Template | Base manifest.json with shared structure |

Setup

Quick Install (Claude Code CLI)

Install the core plus the MCPs for your integration type:

claude mcp add venafi-integration-core -- npx -y venafi-integration-core     # Required for all types
claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine   # Machine connector
claude mcp add venafi-connector-ca -- npx -y venafi-connector-ca             # CA connector
claude mcp add venafi-adaptable-app -- npx -y venafi-adaptable-app           # Adaptable driver

To install user-level (available across all projects), add -s user after mcp add.

Manual Setup

Add to your project's .claude/settings.json:

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

Venafi Integration Types

Connectors (Go)

A Venafi connector is a containerized Go REST service that runs on a Venafi vSatellite. It acts as middleware between Venafi TLS Protect Cloud and an external system:

  • Machine connectors discover and provision TLS certificates on target systems (servers, load balancers, network appliances)
  • CA connectors integrate with Certificate Authorities for certificate issuance, import, and revocation

Adaptable Drivers (PowerShell)

A Venafi adaptable driver is a PowerShell .ps1 script that runs directly on the TPP server. It implements 4 functions to manage certificates on a target platform:

  • Test-Settings — validate connectivity and credentials
  • Discover-Certificates — enumerate all certificates on the target, return PEM + metadata
  • Install-Certificate — push a certificate (PEM or PKCS#12) to the target
  • Extract-Certificate — retrieve a specific certificate by its platform ID

Built From Experience

This knowledge base was built from hands-on experience developing production integrations:

Connectors:

  • Splunk (SSH machine connector)
  • FortiGate (REST API machine connector)
  • IBM API Connect (REST API machine connector)
  • IBM DataPower (REST API machine connector)
  • DigiCert ONE (CA connector)

Adaptable drivers:

  • Aruba ClearPass 6.11.x (REST API adaptable app driver)

Related Packages

License

Apache-2.0