File size: 15,012 Bytes
0ed8b6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCP Server Hub</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
}
.gradient-bg {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.glow {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}
</style>
</head>
<body>
<!-- Header -->
<header class="gradient-bg text-white">
<div class="container mx-auto px-6 py-16">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="w-10 h-10 bg-white rounded-lg flex items-center justify-center">
<i class="fas fa-server text-blue-600 text-xl"></i>
</div>
<h1 class="text-3xl font-bold">MCP Server Hub</h1>
</div>
<div>
<a href="https://gitmcp.io/" class="bg-white text-blue-600 px-6 py-2 rounded-lg font-medium hover:bg-blue-50 transition duration-300">
GitMCP.io
</a>
</div>
</div>
<div class="mt-16 max-w-2xl">
<h2 class="text-4xl font-bold mb-4">Your Gateway to MCP Servers</h2>
<p class="text-lg opacity-90">Discover the best resources, tools, and communities for the Model Context Protocol ecosystem.</p>
</div>
</div>
</header>
<!-- Main Content -->
<main class="container mx-auto px-6 py-12">
<!-- Featured Section -->
<section class="mb-16">
<div class="bg-white rounded-xl p-8 shadow-lg glow">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-6 md:mb-0">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Integrated with GitMCP</h3>
<p class="text-gray-600 mb-6">Direct access to the official MCP repository management platform with seamless integration.</p>
<a href="https://gitmcp.io/" class="inline-block bg-blue-600 text-white px-6 py-3 rounded-lg font-medium hover:bg-blue-700 transition duration-300">
Visit GitMCP.io <i class="fas fa-external-link-alt ml-2"></i>
</a>
</div>
<div class="md:w-1/2">
<div class="bg-gray-100 rounded-lg p-4 h-64 flex items-center justify-center">
<i class="fas fa-code-branch text-6xl text-blue-500 opacity-50"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Server Resources Grid -->
<section>
<h2 class="text-3xl font-bold text-gray-800 mb-8">MCP Server Resources</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Card 1 -->
<a href="https://github.com/modelcontextprotocol/servers" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fab fa-github text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Official MCP Servers</h3>
</div>
<p class="text-gray-600">The official repository for MCP server implementations and documentation.</p>
</a>
<!-- Card 2 -->
<a href="https://github.com/punkpeye/awesome-mcp-servers" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-star text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Awesome MCP Servers</h3>
</div>
<p class="text-gray-600">A curated list of awesome MCP servers, tools, and resources.</p>
</a>
<!-- Card 3 -->
<a href="https://smithery.ai/" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-hammer text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Smithery.ai</h3>
</div>
<p class="text-gray-600">Tools and services for building and deploying MCP servers.</p>
</a>
<!-- Card 4 -->
<a href="https://www.pulsemcp.com/" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-heartbeat text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">PulseMCP</h3>
</div>
<p class="text-gray-600">Monitoring and analytics for MCP server performance.</p>
</a>
<!-- Card 5 -->
<a href="https://mcp.so/" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-bolt text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">MCP.so</h3>
</div>
<p class="text-gray-600">Fast and reliable MCP server hosting solutions.</p>
</a>
<!-- Card 6 -->
<a href="https://cursor.directory/mcp" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-search text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Cursor Directory</h3>
</div>
<p class="text-gray-600">Discover and explore MCP servers in the ecosystem.</p>
</a>
<!-- Card 7 -->
<a href="https://glama.ai/mcp/servers" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-robot text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Glama.ai</h3>
</div>
<p class="text-gray-600">AI-powered tools for MCP server management.</p>
</a>
<!-- Card 8 -->
<a href="https://portkey.ai/" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-key text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Portkey.ai</h3>
</div>
<p class="text-gray-600">Authentication and security for MCP servers.</p>
</a>
<!-- Card 9 -->
<a href="https://cline.bot/mcp-marketplace" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-store text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">MCP Marketplace</h3>
</div>
<p class="text-gray-600">Find and purchase MCP server plugins and extensions.</p>
</a>
<!-- Card 10 -->
<a href="https://github.com/fl-nk/fleur" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-leaf text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Fleur</h3>
</div>
<p class="text-gray-600">Lightweight framework for building MCP servers.</p>
</a>
<!-- Card 11 -->
<a href="https://cherry-ai.com" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fas fa-cherry text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">Cherry AI</h3>
</div>
<p class="text-gray-600">AI services compatible with MCP protocol.</p>
</a>
<!-- Card 12 -->
<a href="https://www.reddit.com/r/mcp/" target="_blank" class="bg-white rounded-xl p-6 shadow-md transition duration-300 card-hover">
<div class="flex items-center mb-4">
<div class="w-12 h-12 bg-blue-100 rounded-lg flex items-center justify-center mr-4">
<i class="fab fa-reddit text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800">MCP Subreddit</h3>
</div>
<p class="text-gray-600">Community discussions about MCP servers and development.</p>
</a>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="container mx-auto px-6">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center space-x-2">
<div class="w-8 h-8 bg-blue-600 rounded-lg flex items-center justify-center">
<i class="fas fa-server text-white"></i>
</div>
<span class="text-xl font-bold">MCP Server Hub</span>
</div>
<p class="text-gray-400 mt-2">Connecting the MCP ecosystem</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition duration-300">
<i class="fab fa-discord text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>© 2023 MCP Server Hub. All links are property of their respective owners.</p>
</div>
</div>
</footer>
<script>
// Simple animation on page load
document.addEventListener('DOMContentLoaded', function() {
const cards = document.querySelectorAll('.card-hover');
cards.forEach((card, index) => {
setTimeout(() => {
card.style.opacity = '1';
card.style.transform = 'translateY(0)';
}, 100 * index);
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=hongpingzhang/mcp-server-hub-ai" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |