Marketplaces
Curated catalogs of plugins (and the skills/MCP servers inside them) that Claude Code can install from.
What it is
A marketplace is a marketplace.json index — usually in a GitHub repo — listing plugins available for /plugin install. Once you register a marketplace, its plugins are discoverable in the /plugin browser and addressable as <plugin-name>@<marketplace-name>. You add the marketplace itself from GitHub owner/repo, any Git URL, a local directory, or a direct URL to a hosted marketplace.json. Inside that file, an individual plugin entry can point to a GitHub repo, a git URL (including a monorepo subdirectory), an npm package, or — new in v2.1.224 (2026-08-07) — a zip file over plain HTTPS with an optional SHA-256 pin. You install any of these the same way; the source type only matters to whoever authored the marketplace.
Anthropic ships the claude-plugins-official marketplace pre-registered — it’s available the first time you open Claude Code. Other Anthropic-managed marketplaces (community, life-sciences, knowledge-work) and any third-party marketplace must be added explicitly. On the Claude.ai side, the unified Directory at claude.ai/directory surfaces Plugins alongside Skills and Connectors — separate from the Claude Code marketplace mechanism described here.
When to use it
- You want one command to make a vendor’s plugins discoverable.
- Your team maintains internal plugins and wants to install them with a single source-of-truth URL.
- You want to pull a domain bundle (e.g., life sciences) without picking plugins one at a time.
How to install / enable
Inside a Claude Code session, add a marketplace by GitHub owner/repo:
/plugin marketplace add anthropics/life-sciences
/plugin install pubmed@life-sciences
Other domain marketplaces ship the same way — e.g., finance:
/plugin marketplace add anthropics/financial-services
/plugin install financial-analysis@claude-for-financial-services
Other source forms:
/plugin marketplace add anthropics/claude-plugins-community
/plugin marketplace add https://github.com/your-org/your-marketplace.git
/plugin marketplace add https://gitlab.com/your-org/your-marketplace.git
/plugin marketplace add ~/projects/local-marketplace
GitLab repos work as a full https://gitlab.com/... URL, shown above. The v2.1.232 (2026-08-13) changelog also describes a bare gitlab.com/owner/repo shorthand (no scheme, nested subgroups included) cloning like GitHub’s owner/repo form — Anthropic’s plugin-marketplaces doc hasn’t caught up to that yet, so stick to the full URL if the bare form doesn’t resolve for you.
List, remove, or update with /plugin marketplace list, /plugin marketplace remove <name> (or rm), and /plugin marketplace update <name>.
Common pitfalls
- Skipping
/plugin marketplace addbefore/plugin install— installs need a registered source. - Adding a private repo without authentication — Claude Code uses your local Git credentials.
- Forgetting to
/plugin marketplace updateafter the upstream marketplace changes — install will fail with “not found” if the local clone is stale. - Trying to
removeorupdatea seed-managed marketplace (container-deployed, read-only) — fails by design; admins must update the seed image. - Trusting marketplaces blindly. Marketplaces are arbitrary repos; review the plugins they list.
See also
- Plugins — what marketplaces distribute
- Discover plugins reference — canonical docs
anthropics/life-sciences— domain marketplaceanthropics/financial-services— domain marketplace (10 finance agents shipped 2026-05-05)anthropics/claude-plugins-official— cross-domain marketplace (pre-registered)- Catalog examples that install via this marketplace: Translational Medicine
Sources
- Discover and install prebuilt plugins through marketplaces — Anthropic docs; verified 2026-05-19 (this run).
- Create and distribute a plugin marketplace — Anthropic docs; verified 2026-05-19.
- Claude Code changelog (May 2026) — seed-managed marketplaces, marketplace browse cost estimates; verified 2026-05-19.
anthropics/claude-plugins-official— verified 2026-05-19.anthropics/life-sciences— verified 2026-05-19.anthropics/claude-plugins-community— verified 2026-05-19.- Agents for financial services — Anthropic news; published 2026-05-05 — 10 finance agent templates shipped as plugins for Cowork and Claude Code.
anthropics/financial-services— verified 2026-05-27 (this run) —claude-for-financial-servicesmarketplace; installfinancial-analysisfirst (provides shared MCP connectors).- Install financial services plugins for Cowork — Anthropic help center; verified 2026-05-27 — Cowork install path (Customize → Add marketplace from GitHub).
- Create and distribute a plugin marketplace — Anthropic docs; verified 2026-08-08 (this run) — marketplace-entry source kinds (relative path,
github, git URL,git-subdir,npm, and the newarchivezip-over-HTTPS source with optionalsha256pin). - Claude Code changelog (v2.1.224, 2026-08-07) — Anthropic docs; verified 2026-08-08 — added the
archiveplugin source type. - Claude Code changelog (v2.1.232, 2026-08-13) — Anthropic docs; verified 2026-08-15 (this run) — bare
gitlab.comrepo URLs (including nested subgroups) now clone likegithub.comshorthand URLs; clone auth-failure hints name the actual git host. - Create and distribute a plugin marketplace — Anthropic docs; re-verified 2026-08-15 (this run) — still documents only the full-URL
gitsource kind for GitLab (as of v2.1.196, a host typed without a scheme is rejected), not yet the v2.1.232 bare-shorthand behavior — doc-page lag noted in the changelog for this run.