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

v1.0.4

Published

MCP server providing shared knowledge, templates, and tools for building Venafi TLS Protect Cloud connectors

Downloads

380

Readme

venafi-connector-core

An MCP (Model Context Protocol) server that provides shared knowledge, templates, and tools for building Venafi TLS Protect Cloud connectors — both machine connectors and CA connectors.

Use this with Claude Code or any MCP-compatible AI assistant to get expert guidance on connector architecture, manifest schemas, 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 | | 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 connectors | | Deployment Guide | Container registry, vSatellite, build/push, plugin registration, troubleshooting | | Known Gaps | 19 documented Venafi platform behaviors learned from production connectors | | 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)

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

# Or add for all projects (user-level)
claude mcp add -s user venafi-connector-core -- npx -y venafi-connector-core

For full coverage, add all three:

claude mcp add venafi-connector-core -- npx -y venafi-connector-core
claude mcp add venafi-connector-machine -- npx -y venafi-connector-machine
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-machine": {
      "command": "npx",
      "args": ["-y", "venafi-connector-machine"]
    },
    "venafi-connector-ca": {
      "command": "npx",
      "args": ["-y", "venafi-connector-ca"]
    }
  }
}

What Is a Venafi Connector?

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

Built From Experience

This knowledge base was built from hands-on experience developing 5 production 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)

Related Packages

  • venafi-connector-machine — Machine connector-specific endpoints, SSH/REST client patterns, discovery/provisioning
  • venafi-connector-ca — CA connector-specific endpoints, certificate issuance/import/revocation patterns

License

Apache-2.0