Claude Code Official Plugin Directory
Anthropic's official marketplace where Claude Code developers discover, install, and manage plugins, slash commands, agents, and MCP servers from one trusted source.
Code
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Claude Code Official Plugin Directory</title>
<style>
:root {
--bg: #0b0f17;
--surface: #141a26;
--surface-2: #1b2333;
--text: #e6edf6;
--muted: #8b97a8;
--accent: #6ea8fe;
--border: rgba(255, 255, 255, 0.08);
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: var(--bg);
color: var(--text);
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
Helvetica, Arial, sans-serif;
line-height: 1.55;
}
.card {
width: 100%;
max-width: 640px;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 18px;
padding: 28px;
box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.eyebrow {
display: inline-block;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
background: rgba(110, 168, 254, 0.12);
border: 1px solid rgba(110, 168, 254, 0.25);
padding: 4px 10px;
border-radius: 999px;
}
h1 {
margin: 14px 0 8px;
font-size: 1.55rem;
line-height: 1.25;
letter-spacing: -0.01em;
}
.desc {
margin: 0 0 22px;
color: var(--muted);
font-size: 0.98rem;
}
.section-label {
margin: 0 0 8px;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
}
.access {
margin-bottom: 22px;
}
pre {
margin: 0;
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 12px;
padding: 14px 16px;
overflow-x: auto;
}
code {
font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
font-size: 0.86rem;
color: var(--text);
}
.pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 24px;
}
.pill {
font-size: 0.78rem;
color: var(--text);
background: var(--surface-2);
border: 1px solid var(--border);
padding: 5px 12px;
border-radius: 999px;
}
.cta {
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
color: #0b0f17;
background: var(--accent);
padding: 12px 20px;
border-radius: 12px;
transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta:hover {
box-shadow: 0 8px 22px rgba(110, 168, 254, 0.35);
transform: translateY(-1px);
}
.cta:focus-visible {
outline: 3px solid #fff;
outline-offset: 3px;
}
.cta svg {
width: 16px;
height: 16px;
}
</style>
</head>
<body>
<main class="card">
<span class="eyebrow">Claude Code (official)</span>
<h1>Claude Code Official Plugin Directory</h1>
<p class="desc">
Anthropic's official marketplace where Claude Code developers discover,
install, and manage plugins, slash commands, agents, and MCP servers
from one trusted source.
</p>
<div class="access">
<p class="section-label">How to access</p>
<pre><code># Register the official marketplace
/plugin marketplace add anthropics/claude-plugins-official
# Browse and install
/plugin</code></pre>
</div>
<p class="section-label">Compatible with</p>
<div class="pills">
<span class="pill">Claude Code</span>
<span class="pill">MCP servers</span>
<span class="pill">Slash commands</span>
<span class="pill">Subagents</span>
<span class="pill">Hooks</span>
</div>
<a
class="cta"
href="https://github.com/anthropics/claude-plugins-official"
target="_blank"
rel="noopener"
>
View on GitHub
<svg
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
aria-hidden="true"
>
<path d="M7 17 17 7" />
<path d="M7 7h10v10" />
</svg>
</a>
</main>
</body>
</html>What it is
The Claude Code Official Plugin Directory is Anthropic’s first-party marketplace for extending Claude Code. It bundles plugins that ship slash commands, subagents, hooks, and MCP servers, all vetted and maintained by Anthropic. Instead of hunting across scattered repositories, developers point Claude Code at this single trusted source and browse curated extensions from one place.
How to access / install
Browse the marketplace on GitHub:
https://github.com/anthropics/claude-plugins-official
Add it as a plugin marketplace inside Claude Code, then install what you need:
# Register the official marketplace
/plugin marketplace add anthropics/claude-plugins-official
# Browse and install interactively
/plugin
# Or install a plugin by name
/plugin install <plugin-name>@claude-plugins-official
Installed plugins activate immediately in your session; manage or remove them anytime
through the /plugin menu.
Good for
- Discovering first-party, Anthropic-maintained Claude Code extensions.
- Teams that want a trusted, curated source rather than arbitrary third-party repos.
- Quickly adding slash commands, agents, hooks, and MCP servers without manual config.
- Standardizing the plugin set across a project or organization.