Cursor Official Plugin Marketplace
Cursor's official marketplace where developers browse, install, and manage MCP servers, rules, and extensions that extend the Cursor AI coding editor.
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cursor Official Plugin Marketplace</title>
<style>
:root {
--bg: #0b0f17;
--surface: #141a26;
--surface-2: #1b2333;
--text: #e6edf6;
--muted: #8b97a8;
--accent: #6ea8fe;
--border: rgba(255, 255, 255, 0.08);
--radius: 16px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: 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: var(--radius);
padding: 32px;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
margin: 0 0 12px;
}
.eyebrow::before {
content: "";
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--accent);
}
h1 {
margin: 0 0 12px;
font-size: 1.6rem;
line-height: 1.25;
letter-spacing: -0.01em;
}
.desc {
margin: 0 0 24px;
color: var(--muted);
font-size: 0.98rem;
}
.block-label {
margin: 0 0 8px;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
}
.access {
margin: 0 0 24px;
}
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, "Cascadia Code", Menlo, Consolas, monospace;
font-size: 0.88rem;
color: var(--text);
}
.pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 0 0 28px;
}
.pill {
font-size: 0.78rem;
font-weight: 500;
color: var(--text);
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 999px;
padding: 6px 12px;
}
.cta {
display: inline-flex;
align-items: center;
gap: 8px;
width: 100%;
justify-content: center;
text-decoration: none;
font-weight: 600;
font-size: 0.95rem;
color: #0b0f17;
background: var(--accent);
border-radius: 12px;
padding: 13px 20px;
transition: transform 0.12s ease, filter 0.12s ease;
}
.cta:hover {
filter: brightness(1.07);
transform: translateY(-1px);
}
.cta:focus-visible {
outline: 3px solid var(--accent);
outline-offset: 3px;
}
.cta svg {
width: 16px;
height: 16px;
}
@media (max-width: 480px) {
.card {
padding: 24px;
}
h1 {
font-size: 1.35rem;
}
}
</style>
</head>
<body>
<main class="card">
<p class="eyebrow">Cursor ecosystem</p>
<h1>Cursor Official Plugin Marketplace</h1>
<p class="desc">
Cursor's first-party directory for discovering and installing MCP servers, rules,
and integrations that extend the Cursor AI coding editor.
</p>
<section class="access">
<p class="block-label">How to access</p>
<pre><code># Browse in your browser
https://cursor.com/marketplace
# Or open inside the editor
Cursor → Settings → MCP / Marketplace</code></pre>
</section>
<p class="block-label">Compatible with</p>
<div class="pills">
<span class="pill">Cursor</span>
<span class="pill">MCP</span>
<span class="pill">Rules</span>
<span class="pill">Integrations</span>
</div>
<a class="cta" href="https://cursor.com/marketplace" target="_blank" rel="noopener">
Open the marketplace
<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 Cursor Official Plugin Marketplace is the first-party directory for discovering and installing add-ons that extend the Cursor AI code editor. It centralizes MCP servers, rules, and integrations so developers can wire external tools and data sources into Cursor’s agent and chat without hand-editing config files.
Because it is maintained by Cursor itself, listings are designed to install cleanly into the editor and surface alongside Cursor’s native settings.
How to access / install
Browse the marketplace in any browser:
https://cursor.com/marketplace
You can also reach it directly from inside the editor via Cursor → Settings → MCP / Marketplace. From a listing, use the one-click install action to add an entry to your local Cursor configuration, then enable it in Settings.
Good for
- Finding MCP servers that connect Cursor to APIs, databases, and dev tooling.
- Adding shared rules and integrations without writing config by hand.
- Keeping installed extensions discoverable and manageable from one trusted, official place.