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

@confluentinc/claude-code-confluent-plugin

v0.1.0-alpha.3

Published

Claude Code plugin for Confluent Cloud infrastructure provisioning

Readme

Confluent Cloud Claude Code Plugin

A Claude Code plugin that lets developers build Confluent Cloud infrastructure and data streaming applications using natural language. Provides Claude Skills (slash commands) for managing environments, clusters, topics, and API keys — powered by MCP (Model Context Protocol).

Architecture

This plugin provides a single MCP server (confluent-infra) with 15 tools covering full Confluent Cloud lifecycle management: infrastructure provisioning + data plane operations.

Quick Start

Prerequisites

1. Set environment variables

Add these to your shell profile (~/.bashrc, ~/.zshrc, etc.):

export CONFLUENT_CLOUD_API_KEY=your-api-key
export CONFLUENT_CLOUD_API_SECRET=your-api-secret

Generate API keys at Confluent Cloud Settings > API Keys. Use a Cloud resource management API key (not a cluster-scoped key).

2. Add the MCP server to Claude Code

claude mcp add -s user confluent-infra \
  -e CONFLUENT_CLOUD_API_KEY=${CONFLUENT_CLOUD_API_KEY} \
  -e CONFLUENT_CLOUD_API_SECRET=${CONFLUENT_CLOUD_API_SECRET} \
  -- npx -y @confluentinc/claude-code-confluent-plugin@latest

This registers the plugin globally so it's available in any directory.

3. Install slash commands

npx @confluentinc/claude-code-confluent-plugin@latest install-commands

This copies the plugin's slash commands to ~/.claude/commands/ so they're available globally.

4. Open Claude Code

claude

5. Use the slash commands

Environments:

  • /environments-create — Create a new Confluent Cloud environment
  • /environments-list — List all environments
  • /environments-update — Update environment name or governance package
  • /environments-use — Set active environment for subsequent commands
  • /environments-delete — Delete an environment

Clusters:

  • /clusters-create — Create a Kafka cluster (with provisioning wait + API key creation)
  • /clusters-list — List clusters in an environment
  • /clusters-delete — Delete a cluster

Topics:

  • /topics-create — Create a Kafka topic
  • /topics-list — List topics in a cluster
  • /topics-delete — Delete a topic

API Keys:

  • /api-keys-create — Create a cluster-scoped API key
  • /api-keys-list — List API keys
  • /api-keys-delete — Delete an API key

Setup:

  • /setup-streaming-app — Full end-to-end: environment → cluster → API key → topics → optional app scaffold

MCP Tools

Management Plane

| Tool | Description | |------|-------------| | create_environment | Create a Confluent Cloud environment | | list_environments | List all environments | | update_environment | Update environment name or governance package | | delete_environment | Delete an environment | | create_cluster | Create a Kafka cluster (returns immediately, async provisioning) | | get_cluster | Get cluster details and provisioning status | | list_clusters | List clusters in an environment | | delete_cluster | Delete a cluster | | create_api_key | Create a cluster-scoped API key | | list_api_keys | List API keys (optional resource filter) | | delete_api_key | Delete an API key |

Data Plane (requires cluster-scoped API credentials)

| Tool | Description | |------|-------------| | create_topic | Create a Kafka topic | | list_topics | List all topics in a cluster | | delete_topic | Delete a topic |

Configuration

The claude mcp add command in Step 2 registers the MCP server in your user-level Claude Code settings (~/.claude.json), making it available from any directory.

Development

# Install dependencies
npm install

# Build (cleans dist/ first)
npm run build

# Watch mode
npm run dev

License

Confluent Community License Agreement