A collection of open-source plugins for Claude Code, Anthropic's CLI for AI-assisted software development.
Claude Code is Anthropic's command-line tool that brings Claude directly into your terminal. Plugins extend Claude Code with additional capabilities — hooks that run on events (like session start), skills that add new /slash commands, and MCP server configurations.
Plugins can:
- Add hooks that trigger on events (e.g., start a dashboard when Claude Code opens)
- Add skills that register new
/commandsinside Claude Code - Bundle MCP servers for tool integrations
| Plugin | Description | Status |
|---|---|---|
| mcp-manager | Web dashboard to toggle MCP servers on/off, view tools, and manage configs across workspaces | v1.0.0 |
- Install Claude Code — Follow the official guide to install Claude Code
- Run Claude Code at least once — This creates the
~/.claude.jsonconfig file that plugins depend on - Node.js 20+ and npm — Required to build and run plugins
Claude Code uses a marketplace system. A marketplace is a GitHub repo (or local path) that contains one or more plugins. To install a plugin, you first register the marketplace, then install plugins from it.
A marketplace is any repo with a .claude-plugin/marketplace.json at its root. Register it with:
# From a GitHub repo
claude plugin marketplace add github:<owner>/<repo>
# From a local path
claude plugin marketplace add /path/to/marketplaceOnce the marketplace is registered, install any plugin listed in it:
claude plugin install <plugin-name>This clones the plugin, builds it, and registers its hooks and skills with Claude Code automatically.
Start a new Claude Code session for the plugin's hooks and skills to take effect.
# List registered marketplaces
claude plugin marketplace list
# Update marketplace catalogs
claude plugin marketplace update
# List installed plugins
claude plugin list
# Remove a plugin
claude plugin uninstall <plugin-name>
# Remove a marketplace
claude plugin marketplace remove <marketplace-name>To install mcp-manager from this repository:
# 1. Register this repo as a marketplace
claude plugin marketplace add github:sanjibdevnathlabs/claude-plugins
# 2. Install the plugin
claude plugin install mcp-managerThen start a new Claude Code session — you should see:
MCP Manager dashboard running at http://localhost:4111
See the mcp-manager README for full setup and usage details.
Plugin updates are a two-step process — first refresh the marketplace catalog, then update the plugin itself.
# 1. Refresh the marketplace catalog (pulls latest version info)
claude plugin marketplace update
# 2. Open the plugin manager and select a plugin to update
claude plugin manageSelect the plugin you want to update, then choose the update action. This will re-download the latest version and update your local cache.
Each plugin declares a version in the marketplace manifest (.claude-plugin/marketplace.json) and in its own metadata (.claude-plugin/plugin.json). When the marketplace version differs from your installed version, the plugin is considered outdated.
Note: There are currently no automatic update notifications. To stay up to date, periodically run
claude plugin marketplace updateand check/plugin managefor available updates.
Each plugin lives in its own directory at the repo root. See the individual plugin READMEs for development setup: