Product

  • Browse Plugins
  • Marketplaces

Resources

  • Learning Center
  • Claude Code Docs
  • Plugin Guide
  • Plugin Reference
  • Plugin Marketplaces

Community

  • Browse on GitHub
  • Get Support

Admin

  • Admin Panel
Community Maintained•Not affiliated with Anthropic

© 2025 ClaudePluginHub

ClaudePluginHub
ClaudePluginHub
PluginsMarketplaces
Learn
Back to Learn
Quick Start

Getting Started with Plugins

Install Claude Code plugins directly from GitHub repositories in just two simple commands.

Quick Start (2 Minutes)

1

Find a Plugin

Browse the plugin directory and click on any plugin to view its detail page with installation instructions

Browse Plugin Directory
2

Add the GitHub Repository

On the plugin detail page, copy the first command to add the repository

/plugin marketplace add owner/repo

Replace owner/repo with the actual GitHub path (e.g., anthropics/sugar).

A "marketplace" in Claude Code is a JSON catalog that lists available plugins. When you add a GitHub repository, you're registering it as a plugin source for discovery and installation.

3

Install the Plugin

Copy the second command from the plugin detail page. Use the plugin's manifest name - for example, the 'Sugar' plugin uses sugar as its install name.

/plugin install plugin-name

Replace plugin-name with the actual plugin name from its manifest (shown on the detail page)

You're All Set!

The plugin's commands, agents, skills, and integrations are now available in Claude Code. Check the plugin's README for usage instructions.

Example Installation

To install a plugin from anthropics/sugar:

/plugin marketplace add anthropics/sugar
/plugin install sugar

Managing Your Plugins

Use these commands to manage installed plugins:

List All Plugins

/plugin list

See all installed plugins and their status

Enable a Plugin

/plugin enable plugin-name

Activate a previously disabled plugin

Disable a Plugin

/plugin disable plugin-name

Temporarily turn off a plugin without uninstalling

Uninstall a Plugin

/plugin uninstall plugin-name

Completely remove a plugin from your system

Pro Tip: Context Management

Disable plugins when working on unrelated projects to keep your context clean and focused. Enable them again when you need them.

Common Issues

Plugin not found after installation

Make sure you added the GitHub repository first with /plugin marketplace add owner/repo. Then install the plugin using its name exactly as shown on the plugin detail page.

Commands not showing up

After installing a plugin, you may need to reload Claude Code. Check if the plugin is enabled with /plugin list.

MCP servers not connecting

Some plugins require additional configuration for MCP servers (API keys, credentials, etc.). Check the plugin's README for setup instructions.

Next Steps

Now that you know how to install plugins, learn about safety and how to evaluate plugins.

Learn About SafetyBrowse Plugins