<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCP Hub - @MisterSandFR</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
margin: 0;
padding: 20px;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.header {
text-align: center;
color: white;
margin-bottom: 40px;
}
.header h1 {
font-size: 3em;
margin: 0;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.servers-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.server-card {
background: white;
border-radius: 15px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.server-header {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.server-icon {
font-size: 2em;
margin-right: 15px;
}
.server-title {
font-size: 1.4em;
font-weight: bold;
color: #333;
margin: 0;
}
.server-status {
display: inline-block;
padding: 5px 12px;
border-radius: 20px;
font-size: 0.8em;
font-weight: bold;
margin-left: auto;
background: #4CAF50;
color: white;
}
.server-description {
color: #666;
margin-bottom: 15px;
line-height: 1.5;
}
.server-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
font-size: 0.9em;
}
.btn-primary {
background: #667eea;
color: white;
}
.btn-secondary {
background: #f8f9fa;
color: #333;
border: 1px solid #ddd;
}
.footer {
text-align: center;
color: white;
margin-top: 40px;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>🚀 MCP Hub</h1>
<p>Centre de contrôle de tous mes serveurs MCP</p>
<p>Développé par <strong>@MisterSandFR</strong></p>
</div>
<div class="servers-grid">
<div class="server-card">
<div class="server-header">
<div class="server-icon">🗄️</div>
<h3 class="server-title">Supabase MCP</h3>
<span class="server-status">En ligne</span>
</div>
<div class="server-description">
Serveur MCP pour la gestion complète de Supabase.
Exécution SQL, gestion des utilisateurs, monitoring et plus.
</div>
<div class="server-actions">
<a href="https://smithery.ai/server/@MisterSandFR/supabase-mcp-selfhosted" class="btn btn-primary" target="_blank">
🔗 Smithery
</a>
<a href="/health" class="btn btn-secondary">
🏥 Health
</a>
<a href="/.well-known/mcp-config" class="btn btn-secondary">
⚙️ Config
</a>
</div>
</div>
</div>
<div class="footer">
<p>🌐 <strong>mcp.coupaul.fr</strong> - Hub MCP de @MisterSandFR</p>
<p>Serveurs MCP auto-hébergés sur Railway</p>
</div>
</div>
</body>
</html>