Blog · AI Companies
🧠 AI Companies

Claude Marketplaces & Plugins 2026

Claude plugins are pre-packaged bundles of capabilities that drop into Claude Code (or Claude.ai) to extend functionality without you writing the integration code. The plugin ecosystem accelerated through 2025-2026 and now has official Anthropic-maintained plugins plus a growing community marketplace. This post is the practical tour.

What plugins are

A Claude plugin bundles together one or more of: MCP servers (tools the agent can call), skills (instruction packs), agent definitions (specialized sub-agents), hooks (lifecycle handlers), and configuration. Installing a plugin is one command; you get the full bundle wired up.

Think of plugins as "Claude Code apps" — the convenient unit of distribution for adding capabilities.

Plugins vs MCP vs Skills

A plugin is the higher-level distribution unit. If you want "Stripe support in Claude," you install the Stripe plugin — which probably includes an MCP server (the API client), a skill (when to use what), and maybe some agent definitions (a "billing reviewer" agent). One install, capabilities wired in.

anthropics/claude-plugins-official

github.com/anthropics/claude-plugins-official is Anthropic's officially maintained plugin repository. Highest trust tier — signed by Anthropic, kept current with Claude Code releases.

Typical categories in the official set: code review, refactor agents, documentation generation, common API integrations (GitHub, Stripe, Slack, basic SaaS), data analysis pipelines. Browse the repo for the current catalog.

claudemarketplaces.com and the community

claudemarketplaces.com is a community-driven directory of Claude plugins. Categories, ratings, reviews, install metadata. The page claudemarketplaces.com/plugins/anthropics-claude-code indexes the official Anthropic plugins specifically.

Why it's useful:

Other resources in the same ecosystem: agentskills.io (skills directory), skillsmp.com (skills marketplace), various GitHub "awesome" lists.

Installing a plugin

The typical install flow in Claude Code:

# From inside Claude Code
/mcp install <plugin-name>

# Or via the plugins command if available
/plugins install <plugin-name>

# Verify
/mcp        # list MCP servers
/skills     # list active skills
/agents     # list available agents

Exact command varies by plugin and Claude Code version. Each plugin's README documents its specific install. The pattern is consistent: drop config into your project's .claude/ directory or use the relevant slash command.

Evaluating before you install

Plugins run with your Claude Code's permissions. A malicious plugin could read your files, exfiltrate data, or rack up API costs. Audit before installing:

  1. Source. Official Anthropic plugins = safe. Well-known community contributors = likely safe. Anonymous one-time uploads = risky.
  2. Permissions / tools. What does the plugin access? Network? Filesystem? Shell? Should match the plugin's purpose.
  3. Code review. Plugin code is usually small enough to scan. Claude itself can audit a plugin's source for you — give it a 5-minute review.
  4. Recent activity. Maintained recently (last 90 days) = better.
  5. Stars / install count. Higher is loose validation, not a security proof.
  6. Open issues for security concerns. A plugin with reports of "this exfiltrates X" should be a hard pass.

Plugins worth installing

For an iOS builder using Claude Code, useful categories include:

Don't install everything — each plugin loads tools into Claude's context, and an over-equipped agent picks the wrong tool more often. Stick to ~5-8 frequently used plugins; install niche ones per-project as needed.

Authoring your own plugin

Roughly:

  1. Write the MCP server(s) if your plugin includes tools.
  2. Write the skill markdown if your plugin includes instructions.
  3. Define agents if your plugin includes specialized sub-agents.
  4. Bundle in a plugin manifest (format documented at code.claude.com/docs).
  5. Publish to GitHub. Submit to claudemarketplaces.com for discovery.

For deeper coverage of the underlying primitives, see Claude Skills Ecosystem and Anthropic GitHub Repos.


See: Claude at Maximum Efficiency, Skills Ecosystem, Agentic AI in Claude, What is MCP?.