Glama.ai — MCP Server Registry with Security Scanning
A curated registry where developers discover, compare, and vet Model Context Protocol servers, with automated security scanning and quality scoring for safer installs.
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Glama.ai — MCP Server Registry</title>
<style>
:root {
--bg: #0b0f17;
--surface: #141a26;
--surface-2: #1b2332;
--text: #e6edf6;
--muted: #8b97a8;
--accent: #6ea8fe;
--border: rgba(255, 255, 255, 0.08);
--radius: 16px;
}
* { 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: var(--radius);
padding: 32px;
box-shadow: 0 18px 48px 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;
margin: 0 0 16px;
}
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;
}
h2 {
margin: 0 0 10px;
font-size: 0.78rem;
font-weight: 600;
letter-spacing: 0.06em;
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: "SF Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 0.86rem;
color: var(--text);
}
.pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin: 0 0 28px;
}
.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;
width: 100%;
justify-content: center;
text-decoration: none;
font-weight: 600;
font-size: 0.98rem;
color: #0b0f17;
background: var(--accent);
padding: 14px 20px;
border-radius: 12px;
transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.cta:hover {
background: #8bbcff;
box-shadow: 0 8px 24px rgba(110, 168, 254, 0.35);
}
.cta:focus-visible {
outline: 3px solid #bcd5ff;
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">MCP directories</p>
<h1>Glama.ai — MCP Server Registry</h1>
<p class="desc">
A curated registry where developers discover, compare, and vet Model Context
Protocol servers — with automated security scanning and quality scoring to make
installs safer.
</p>
<section class="access">
<h2>How to access</h2>
<pre><code># Browse the registry
https://glama.ai/mcp/servers
# Add a chosen server to your client's MCP config
{
"mcpServers": {
"example": {
"command": "npx",
"args": ["-y", "some-mcp-server"]
}
}
}</code></pre>
</section>
<h2>Compatible with</h2>
<div class="pills">
<span class="pill">Claude Code</span>
<span class="pill">Cursor</span>
<span class="pill">Windsurf</span>
<span class="pill">Any MCP client</span>
</div>
<a class="cta" href="https://glama.ai/mcp/servers" target="_blank" rel="noopener">
Open the registry
<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
Glama.ai’s MCP server registry is a public directory for discovering and evaluating Model Context Protocol (MCP) servers. Each listing collects the server’s source repository, capabilities, and metadata so developers can browse, search, and compare options in one place instead of hunting across scattered GitHub repos.
What sets it apart is its emphasis on trust: Glama runs automated security scanning and quality assessments against listed servers, surfacing signals that help you judge whether a server is safe and well-maintained before you wire it into an AI coding tool.
How to access / install
Browse the registry directly in your browser:
https://glama.ai/mcp/servers
Glama is a directory, not a package manager — pick a server from the listing, then follow that server’s own install instructions. MCP servers are typically wired into a client via its config. For example, a generic stdio server entry looks like:
{
"mcpServers": {
"example": {
"command": "npx",
"args": ["-y", "some-mcp-server"]
}
}
}
Add the relevant block to your client’s MCP configuration (Claude Code, Cursor, and other MCP-aware tools each expose their own config location), then restart the client.
Good for
- Discovering MCP servers across many ecosystems from a single searchable index.
- Comparing servers by capabilities and maintenance signals before committing.
- Vetting third-party servers with security and quality signals to reduce supply-chain risk.
- Teams standardizing on a reviewed shortlist of MCP servers for their AI coding tools.