awesome-remote-mcp-servers — Remote/Cloud MCP Servers
A curated GitHub list of remote and cloud-hosted MCP servers you can connect to over HTTP/SSE without running anything locally.
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>awesome-remote-mcp-servers — Remote/Cloud MCP Servers</title>
<style>
:root {
--bg: #0b0f17;
--surface: #141a26;
--surface-2: #1b2331;
--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: radial-gradient(1200px 600px at 50% -10%, #131b2b 0%, var(--bg) 60%);
color: var(--text);
font-family: "Inter", -apple-system, BlinkMacSystemFont, "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);
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
padding: 32px;
}
.eyebrow {
display: inline-block;
font-size: 12px;
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-bottom: 16px;
}
h1 {
margin: 0 0 12px;
font-size: 26px;
line-height: 1.25;
letter-spacing: -0.01em;
}
.desc {
margin: 0 0 24px;
color: var(--muted);
font-size: 15px;
}
h2 {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--muted);
margin: 0 0 10px;
}
.access {
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 12px;
padding: 16px;
margin-bottom: 24px;
}
.access a.url {
color: var(--accent);
text-decoration: none;
font-size: 14px;
word-break: break-all;
}
.access a.url:hover { text-decoration: underline; }
pre {
margin: 12px 0 0;
padding: 12px 14px;
background: #0c111b;
border: 1px solid var(--border);
border-radius: 10px;
overflow-x: auto;
}
code {
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
font-size: 13px;
color: #cdd9ec;
}
.pills {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 28px;
}
.pill {
font-size: 12px;
font-weight: 500;
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;
background: var(--accent);
color: #08111f;
font-weight: 600;
font-size: 15px;
text-decoration: none;
padding: 12px 20px;
border-radius: 10px;
transition: transform 0.12s ease, filter 0.12s ease;
}
.cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cta:focus-visible,
.access a.url:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
border-radius: 6px;
}
.cta svg { width: 16px; height: 16px; }
@media (max-width: 480px) {
.card { padding: 22px; }
h1 { font-size: 22px; }
}
</style>
</head>
<body>
<main class="card">
<span class="eyebrow">MCP directories</span>
<h1>awesome-remote-mcp-servers</h1>
<p class="desc">
A curated GitHub list of remote and cloud-hosted MCP servers you can
connect to over HTTP/SSE — no local install or runtime required.
</p>
<section>
<h2>How to access</h2>
<div class="access">
<a class="url" href="https://github.com/jaw9c/awesome-remote-mcp-servers" target="_blank" rel="noopener">
github.com/jaw9c/awesome-remote-mcp-servers
</a>
<pre><code># Add a remote MCP server in Claude Code
claude mcp add --transport http <name> <https-endpoint-url></code></pre>
</div>
</section>
<section>
<h2>Compatible with</h2>
<div class="pills">
<span class="pill">Claude Code</span>
<span class="pill">Cursor</span>
<span class="pill">VS Code</span>
<span class="pill">Windsurf</span>
<span class="pill">Any MCP client</span>
</div>
</section>
<a class="cta" href="https://github.com/jaw9c/awesome-remote-mcp-servers" target="_blank" rel="noopener">
Browse the directory
<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
awesome-remote-mcp-servers is a community-maintained awesome list, curated by
jaw9c, that catalogs remote and cloud-hosted MCP (Model Context Protocol)
servers. Unlike local MCP servers that run on your machine via stdio, the
servers listed here are reachable over the network (HTTP / SSE), so any
MCP-compatible AI tool can connect to them with just a URL and, where needed,
an auth token — no local install or runtime to manage.
How to access / install
The directory itself is a GitHub README — browse it to discover servers:
https://github.com/jaw9c/awesome-remote-mcp-servers
Once you pick a remote server, point your client at its endpoint. For example, in Claude Code:
# Add a remote MCP server by URL (HTTP transport)
claude mcp add --transport http <name> <https-endpoint-url>
# Or SSE transport
claude mcp add --transport sse <name> <https-endpoint-url>
Most clients (Cursor, VS Code, Windsurf, etc.) accept the same remote endpoint
in their mcpServers config block, typically with a url and optional headers
for authentication.
Good for
- Discovering managed MCP servers without standing up local infrastructure.
- Teams that want shared, always-on MCP endpoints instead of per-developer setups.
- Quickly extending Claude Code, Cursor, and other MCP clients with hosted tools.