Spaces:
Running
Running
File size: 35,989 Bytes
9de4b6d |
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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MCO Protocol - Enterprise-grade AI Orchestration</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">
<script src="https://cdn.jsdelivr.net/npm/chart.xkcd@1.1/dist/chart.xkcd.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');
:root {
--primary: #6366f1;
--secondary: #10b981;
--accent: #8b5cf6;
--dark: #0f172a;
--darker: #0b1120;
}
body {
font-family: 'Inter', sans-serif;
background-image: radial-gradient(circle at 25% 25%, rgba(15, 23, 42, 0.9) 0%, rgba(11, 17, 32, 1) 100%);
color: #cbd5e1;
overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
font-family: 'Space Grotesk', sans-serif;
}
.hero-gradient {
background: radial-gradient(circle at 60% 50%, rgba(99, 102, 241, 0.15), transparent 70%);
}
.glow {
filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.7));
}
.feature-card {
transition: all 0.3s ease;
border: 1px solid rgba(99, 102, 241, 0.2);
background: linear-gradient(150deg, rgba(30, 41, 59, 0.6), rgba(15, 23, 42, 0.8));
backdrop-filter: blur(10px);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.25);
border-color: rgba(99, 102, 241, 0.4);
}
.workflow-node {
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 0.75rem;
padding: 1.25rem 1rem;
cursor: grab;
user-select: none;
background: linear-gradient(145deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
border: 2px solid;
transition: all 0.3s ease;
min-width: 140px;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.workflow-node:hover {
box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
transform: scale(1.03);
}
.workflow-node.active {
box-shadow: 0 0 0 3px var(--primary);
}
.workflow-line {
position: absolute;
background: rgba(99, 102, 241, 0.7);
transform-origin: left;
transition: all 0.3s ease;
}
.dashboard-panel {
background: rgba(15, 23, 42, 0.6);
backdrop-filter: blur(12px);
border: 1px solid rgba(99, 102, 241, 0.2);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.6; }
50% { opacity: 1; }
100% { opacity: 0.6; }
}
.terminal {
background-color: #0f172a;
border: 1px solid rgba(99, 102, 241, 0.2);
border-radius: 0.5rem;
font-family: 'SF Mono', 'Menlo', monospace;
font-size: 14px;
position: relative;
}
.terminal-header {
background: linear-gradient(90deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
padding: 0.5rem 1rem;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
.terminal-body {
padding: 1.25rem;
height: 100%;
overflow-y: auto;
}
@media (max-width: 768px) {
.workflow-container {
height: 500px;
}
}
</style>
</head>
<body class="min-h-screen relative">
<!-- Gradient Overlays -->
<div class="absolute top-0 left-0 w-full h-1/2 bg-gradient-to-b from-[#6366f1]/10 to-transparent -z-10"></div>
<div class="absolute bottom-0 left-0 w-full h-1/2 bg-gradient-to-t from-[#10b981]/10 to-transparent -z-10"></div>
<!-- Header -->
<header class="bg-[rgba(11,17,32,0.9)] backdrop-blur-lg border-b border-[#1e293b] sticky top-0 z-50">
<nav class="container mx-auto px-4 py-4 flex items-center justify-between">
<div class="flex items-center">
<div class="flex items-center space-x-2">
<div class="w-10 h-10 rounded-lg bg-gradient-to-br from-indigo-500 to-purple-600 flex items-center justify-center">
<i class="fas fa-brain text-white text-xl"></i>
</div>
<span class="text-xl font-bold bg-gradient-to-r from-purple-400 to-indigo-300 bg-clip-text text-transparent">MCO Protocol</span>
</div>
<div class="hidden md:flex ml-12 space-x-8">
<a href="#" class="text-indigo-200 hover:text-white transition-all">Product</a>
<a href="#" class="text-slate-300 hover:text-white transition-all">Solutions</a>
<a href="#" class="text-slate-300 hover:text-white transition-all">Documentation</a>
<a href="#" class="text-slate-300 hover:text-white transition-all">Pricing</a>
<a href="#" class="text-slate-300 hover:text-white transition-all">Resources</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="px-4 py-2 text-slate-300 hover:text-white transition-all font-medium">Sign In</button>
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white font-medium px-6 py-2 rounded-lg transition-all">Get Started</button>
<button class="md:hidden text-slate-300 hover:text-white">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</nav>
</header>
<!-- Hero Section -->
<section class="hero-gradient relative overflow-hidden pt-16 pb-28">
<div class="absolute top-0 right-0 w-[600px] h-[600px] bg-indigo-500/10 rounded-full -translate-y-1/2 translate-x-1/2 blur-3xl -z-10"></div>
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center md:space-x-12">
<div class="md:w-2/3 mt-12 md:mt-24">
<div class="flex items-center space-x-3 mb-4">
<span class="px-3 py-1 bg-indigo-900/30 text-indigo-300 rounded-full text-sm font-medium">Version 2.1</span>
<span class="px-3 py-1 bg-emerald-900/20 text-emerald-300 rounded-full text-sm font-medium">Enterprise Ready</span>
</div>
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6 text-white">
<span class="bg-gradient-to-r from-indigo-300 to-purple-300 bg-clip-text text-transparent">Transform AI Agents</span>
<br>
<span class="text-slate-300">With Orchestrated Intelligence</span>
</h1>
<p class="text-xl text-slate-300 max-w-2xl mb-10 leading-relaxed">
MCO Protocol delivers enterprise-grade reliability to AI agents through structured orchestration, persistent memory, and progressive revelation. Go from experimental to production-ready with confidence.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4 mt-12">
<button class="bg-gradient-to-r from-indigo-500 to-purple-600 hover:from-indigo-600 hover:to-purple-700 text-white font-bold px-8 py-4 rounded-lg text-lg transition-all transform hover:-translate-y-1 shadow-lg shadow-indigo-500/20">
Start Building Now
<i class="fas fa-arrow-right ml-2"></i>
</button>
<button class="bg-white/5 backdrop-blur-lg border border-slate-700 hover:bg-white/10 hover:border-slate-500 text-white font-bold px-8 py-4 rounded-lg text-lg transition-all">
Watch Demo
<i class="fas fa-play-circle ml-2"></i>
</button>
</div>
<div class="mt-8 flex space-x-6">
<div class="flex items-center">
<div class="flex -space-x-2">
<img src="https://randomuser.me/api/portraits/women/32.jpg" alt="User" class="w-8 h-8 rounded-full border-2 border-slate-800">
<img src="https://randomuser.me/api/portraits/men/22.jpg" alt="User" class="w-8 h-8 rounded-full border-2 border-slate-800">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="User" class="w-8 h-8 rounded-full border-2 border-slate-800">
</div>
<p class="ml-3 text-slate-400">Used by <span class="text-white">1500+</span> developers</p>
</div>
</div>
</div>
<div class="md:w-1/3 flex justify-center mt-12 md:mt-0">
<div class="glow relative overflow-hidden rounded-2xl">
<div class="w-80 h-80 rounded-2xl bg-gradient-to-br from-indigo-900/20 via-slate-900 to-slate-900 border border-slate-700/50 flex flex-col items-center justify-center p-8">
<div class="flex items-center justify-center w-20 h-20 rounded-full bg-indigo-500/10 mb-6">
<i class="fas fa-network-wired text-indigo-400 text-4xl"></i>
</div>
<div class="text-center">
<h3 class="text-xl font-bold text-white mb-2">MCO Workflow Engine</h3>
<p class="text-slate-400">Configure once, run anywhere with managed state persistence and reliability</p>
</div>
<div class="mt-6 flex space-x-3">
<div class="p-3 rounded-lg bg-indigo-500/10 backdrop-blur flex flex-col items-center justify-center">
<div class="text-indigo-300 text-2xl font-bold">90%</div>
<div class="text-indigo-200 text-xs">Success Rate</div>
</div>
<div class="p-3 rounded-lg bg-emerald-500/10 backdrop-blur flex flex-col items-center justify-center">
<div class="text-emerald-300 text-2xl font-bold">8x</div>
<div class="text-emerald-200 text-xs">Faster Iteration</div>
</div>
<div class="p-3 rounded-lg bg-cyan-500/10 backdrop-blur flex flex-col items-center justify-center">
<div class="text-cyan-300 text-2xl font-bold">99.8%</div>
<div class="text-cyan-200 text-xs">Uptime</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Features with Workflow -->
<section class="py-24 relative" id="workflow">
<div class="absolute top-0 left-0 w-full h-24 bg-gradient-to-b from-black/20 to-transparent -z-10"></div>
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-20">
<span class="bg-gradient-to-r from-cyan-400 to-emerald-400 bg-clip-text text-transparent font-bold">CORE FEATURES</span>
<h2 class="text-3xl md:text-4xl font-bold text-white mt-4 mb-6">Built for Reliable AI Orchestration</h2>
<p class="text-slate-400 text-lg">MCO Protocol ensures your AI agents execute with unparalleled reliability through a combination of structured syntax and progressive revelation.</p>
</div>
<!-- Feature Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-24">
<div class="feature-card rounded-2xl p-6 relative overflow-hidden">
<div class="absolute top-0 right-0 w-24 h-24 bg-indigo-500/10 blur-xl -z-10"></div>
<div class="w-12 h-12 rounded-full bg-indigo-500/10 flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-indigo-400 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Persistent Memory</h3>
<p class="text-slate-400">Maintains core requirements throughout entire workflows to combat agent drift and hallucination.</p>
</div>
<div class="feature-card rounded-2xl p-6 relative overflow-hidden">
<div class="absolute top-0 right-0 w-24 h-24 bg-cyan-500/10 blur-xl -z-10"></div>
<div class="w-12 h-12 rounded-full bg-cyan-500/10 flex items-center justify-center mb-6">
<i class="fas fa-bezier-curve text-cyan-400 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Syntactic NLP</h3>
<p class="text-slate-400">Blends structured syntax with natural language for more reliable agent guidance and execution.</p>
</div>
<div class="feature-card rounded-2xl p-6 relative overflow-hidden">
<div class="absolute top-0 right-0 w-24 h-24 bg-purple-500/10 blur-xl -z-10"></div>
<div class="w-12 h-12 rounded-full bg-purple-500/10 flex items-center justify-center mb-6">
<i class="fas fa-calendar-day text-purple-400 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Progressive Revelation</h3>
<p class="text-slate-400">Introduces implementation details at the right moments to prevent agent overload and distraction.</p>
</div>
<div class="feature-card rounded-2xl p-6 relative overflow-hidden">
<div class="absolute top-0 right-0 w-24 h-24 bg-emerald-500/10 blur-xl -z-10"></div>
<div class="w-12 h-12 rounded-full bg-emerald-500/10 flex items-center justify-center mb-6">
<i class="fas fa-clipboard-check text-emerald-400 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-white mb-3">Success Tracking</h3>
<p class="text-slate-400">Explicitly evaluates progress against defined success criteria at every step of the workflow.</p>
</div>
</div>
<!-- Interactive Workflow -->
<div class="text-center max-w-2xl mx-auto mb-16">
<span class="bg-gradient-to-r from-purple-400 to-indigo-400 bg-clip-text text-transparent font-bold">VISUAL WORKFLOW</span>
<h2 class="text-3xl md:text-4xl font-bold text-white mt-4 mb-6">Drag & Drop Orchestration Workflow</h2>
<p class="text-slate-400 text-lg">Interact with our MCO orchestration process. Drag nodes to reconfigure the workflow.</p>
</div>
<div class="workflow-container border border-slate-700/60 rounded-2xl bg-gradient-to-br from-slate-900/50 to-slate-900 p-6 relative h-[600px] overflow-hidden">
<div class="absolute top-0 left-0 w-full h-1/3 bg-gradient-to-b from-indigo-500/5 to-transparent"></div>
<div class="absolute bottom-0 left-0 w-full h-1/3 bg-gradient-to-t from-emerald-500/5 to-transparent"></div>
<!-- Workflow Lines (Will be dynamically managed with JS) -->
<div class="workflow-line" id="line1"></div>
<div class="workflow-line" id="line2"></div>
<div class="workflow-line" id="line3"></div>
<div class="workflow-line" id="line4"></div>
<!-- Workflow Nodes (Draggable) -->
<div class="workflow-node border-cyan-500/40" style="top: 20%; left: 15%;" id="node1">
<div class="w-12 h-12 rounded-xl bg-cyan-500/10 flex items-center justify-center mb-3">
<i class="fas fa-code text-cyan-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">SNLP Config</h3>
<p class="text-xs text-slate-400 mt-1">Define workflow</p>
</div>
<div class="workflow-node border-purple-500/40" style="top: 20%; left: 45%;" id="node2">
<div class="w-12 h-12 rounded-xl bg-purple-500/10 flex items-center justify-center mb-3">
<i class="fas fa-server text-purple-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">MCP Server</h3>
<p class="text-xs text-slate-400 mt-1">Orchestration engine</p>
</div>
<div class="workflow-node border-indigo-500/40" style="top: 20%; left: 75%;" id="node3">
<div class="w-12 h-12 rounded-xl bg-indigo-500/10 flex items-center justify-center mb-3">
<i class="fas fa-brain text-indigo-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">AI Agent</h3>
<p class="text-xs text-slate-400 mt-1">GPT, AutoGPT, etc</p>
</div>
<div class="workflow-node border-emerald-500/40" style="top: 60%; left: 30%;" id="node4">
<div class="w-12 h-12 rounded-xl bg-emerald-500/10 flex items-center justify-center mb-3">
<i class="fas fa-database text-emerald-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">Persistent Memory</h3>
<p class="text-xs text-slate-400 mt-1">Core requirements</p>
</div>
<div class="workflow-node border-orange-500/40" style="top: 60%; left: 60%;" id="node5">
<div class="w-12 h-12 rounded-xl bg-orange-500/10 flex items-center justify-center mb-3">
<i class="fas fa-clipboard-check text-orange-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">Success Criteria</h3>
<p class="text-xs text-slate-400 mt-1">Quality control</p>
</div>
<div class="workflow-node border-rose-500/40" style="top: 60%; left: 85%;" id="node6">
<div class="w-12 h-12 rounded-xl bg-rose-500/10 flex items-center justify-center mb-3">
<i class="fas fa-rocket text-rose-400 text-xl"></i>
</div>
<h3 class="font-bold text-white text-center">Output</h3>
<p class="text-xs text-slate-400 mt-1">Reliable results</p>
</div>
</div>
<div class="flex justify-center mt-8">
<button class="bg-slate-800/60 backdrop-blur border border-slate-700 hover:bg-slate-800/80 text-slate-300 hover:text-white px-6 py-3 rounded-lg transition-colors">
Reset Workflow
</button>
</div>
</div>
</section>
<!-- Quick Start -->
<section class="py-24 relative overflow-hidden">
<div class="container mx-auto px-4">
<div class="text-center max-w-3xl mx-auto mb-20">
<span class="bg-gradient-to-r from-emerald-400 to-cyan-400 bg-clip-text text-transparent font-bold">QUICK START</span>
<h2 class="text-3xl md:text-4xl font-bold text-white mt-4 mb-6">Get Started in Under 5 Minutes</h2>
<p class="text-slate-400 text-lg">Install the MCO Protocol and configure your first AI orchestration workflow in minutes.</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div class="terminal rounded-xl overflow-hidden h-full">
<div class="terminal-header flex items-center justify-between">
<div class="flex items-center space-x-2">
<div class="w-3 h-3 rounded-full bg-rose-500"></div>
<div class="w-3 h-3 rounded-full bg-yellow-500"></div>
<div class="w-3 h-3 rounded-full bg-emerald-500"></div>
</div>
<div class="text-slate-400 text-sm">~/projects/mco-setup</div>
</div>
<div class="terminal-body font-mono text-slate-300">
<div class="mb-4">
<span class="text-emerald-400 font-semibold">$</span> npm install -g @paradiselabs/mco-protocol
</div>
<div class="text-slate-500 text-sm mb-4">Installing MCO Protocol CLI...</div>
<div class="mb-6">
<div class="flex items-center mb-2">
<span class="text-emerald-400 font-semibold">$</span>
<span class="ml-2">mco init my-project</span>
</div>
<div class="pl-6 font-medium">
<p class="mb-2 text-blue-400">β Initializing MCO configuration</p>
<p class="mb-2 text-blue-400">β Opening web configuration tool</p>
<p class="mb-2 text-green-400">β Success! Configuration created</p>
</div>
</div>
<div class="mb-4">
<div class="flex items-center mb-2">
<span class="text-emerald-400 font-semibold">$</span>
<span class="ml-2">cd my-project</span>
</div>
</div>
<div class="mb-6">
<div class="flex items-center mb-2">
<span class="text-emerald-400 font-semibold">$</span>
<span class="ml-2">mco serve</span>
</div>
<div class="pl-6 font-medium">
<p class="mb-2 text-sky-400">MCO Server v2.1.3</p>
<p class="mb-2">β Loading SNLP files...</p>
<p class="mb-2 text-green-400">β Success! Loaded 4 configuration files</p>
<p class="mb-2 text-slate-500">MCP server started on port 8080</p>
<p class="text-amber-400">Ready to accept agent connections</p>
</div>
</div>
<div class="mt-12 flex justify-center">
<div class="animate-pulse flex items-center">
<div class="w-3 h-3 bg-emerald-500 rounded-full mr-2"></div>
<div class="text-emerald-500 text-sm">SERVER ACTIVE</div>
</div>
</div>
</div>
</div>
<div>
<h3 class="text-2xl font-bold text-white mb-6">Configuration Made Simple</h3>
<div class="mb-4 p-5 rounded-xl gradient-border bg-slate-900/50">
<div class="flex items-start mb-4">
<div class="flex-shrink-0 w-12 h-12 rounded-lg bg-indigo-500/10 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-file-alt text-indigo-400 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-white text-lg mb-2">SNLP File Structure</h4>
<p class="text-slate-400">Define your AI workflow using four simple configuration files for different aspects of orchestration.</p>
</div>
</div>
<div class="grid grid-cols-2 gap-3 ml-16">
<div class="bg-slate-800/50 rounded-lg p-3">
<div class="text-indigo-300 font-mono">mco.core.snlp</div>
<div class="text-xs text-slate-400 mt-1">Workflow definition</div>
</div>
<div class="bg-slate-800/50 rounded-lg p-3">
<div class="text-emerald-300 font-mono">mco.sc.snlp</div>
<div class="text-xs text-slate-400 mt-1">Success criteria</div>
</div>
<div class="bg-slate-800/50 rounded-lg p-3">
<div class="text-purple-300 font-mono">mco.features.snlp</div>
<div class="text-xs text-slate-400 mt-1">Feature injection</div>
</div>
<div class="bg-slate-800/50 rounded-lg p-3">
<div class="text-cyan-300 font-mono">mco.styles.snlp</div>
<div class="text-xs text-slate-400 mt-1">Styling preferences</div>
</div>
</div>
</div>
<div class="p-5 rounded-xl gradient-border bg-slate-900/50">
<div class="flex items-start">
<div class="flex-shrink-0 w-12 h-12 rounded-lg bg-cyan-500/10 flex items-center justify-center mr-4 mt-1">
<i class="fas fa-cloud text-cyan-400 text-xl"></i>
</div>
<div>
<h4 class="font-bold text-white text-lg mb-2">Agent Integration</h4>
<p class="text-slate-400 mb-3">Integrate with any MCP-enabled AI framework with just a few lines of configuration.</p>
<pre class="bg-slate-800/60 text-xs p-3 rounded-lg mt-4 text-slate-300 overflow-x-auto">
{
"mcpServers": {
"mco-orchestration": {
"command": "mco-server",
"args": ["--config-dir", "./my-project"]
}
}
}</pre>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Architecture -->
<section class="py-24 relative" id="architecture">
<div class="absolute top-0 left-0 w-full h-24 bg-gradient-to-b from-black/30 to-transparent -z-10"></div>
<div class="container mx-auto px-4">
<div class="text-center max-w-2xl mx-auto mb-20">
<span class="bg-gradient-to-r from-amber-400 to-orange-400 bg-clip-text text-transparent font-bold">ARCHITECTURE</span>
<h2 class="text-3xl md:text-4xl font-bold text-white mt-4 mb-6">Enterprise-Grade Orchestration</h2>
<p class="text-slate-400 text-lg">Designed for scalability, reliability, and seamless integration with any agentic framework.</p>
</div>
<div class="dashboard-panel rounded-2xl p-6 overflow-hidden">
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 relative">
<!-- Architecture Blocks -->
<div class="col-span-1">
<div class="bg-slate-800/50 backdrop-blur rounded-xl p-5 h-full">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-lg bg-indigo-500/10 flex items-center justify-center mr-3">
<i class="fas fa-file-code text-indigo-400"></i>
</div>
<h3 class="font-bold text-xl text-white">SNLP Parser</h3>
</div>
<p class="text-slate-400">Parses and interprets Syntactic Natural Language programming files for workflow definition.</p>
</div>
</div>
<div class="col-span-1">
<div class="bg-slate-800/50 backdrop-blur rounded-xl p-5 h-full">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-lg bg-emerald-500/10 flex items-center justify-center mr-3">
<i class="fas fa-cogs text-emerald-400"></i>
</div>
<h3 class="font-bold text-xl text-white">Orchestration Engine</h3>
</div>
<p class="text-slate-400">Manages workflow state, timelines, and progressive revelation logic.</p>
</div>
</div>
<div class="col-span-1">
<div class="bg-slate-800/50 backdrop-blur rounded-xl p-5 h-full">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-lg bg-cyan-500/10 flex items-center justify-center mr-3">
<i class="fas fa-plug text-cyan-400"></i>
</div>
<h3 class="font-bold text-xl text-white">MCP Tool Provider</h3>
</div>
<p class="text-slate-400">Exposes orchestration tools through the Model Context Protocol interface.</p>
</div>
</div>
<div class="col-span-1">
<div class="bg-slate-800/50 backdrop-blur rounded-xl p-5 h-full">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-lg bg-purple-500/10 flex items-center justify-center mr-3">
<i class="fas fa-tools text-purple-400"></i>
</div>
<h3 class="font-bold text-xl text-white">Config Tool</h3>
</div>
<p class="text-slate-400">Web-based visual interface for creating and managing SNLP configuration files.</p>
</div>
</div>
<!-- Lines connecting the blocks -->
<div class="absolute top-1/4 left-1/4 w-1/5 h-1 border-t-2 border-t-indigo-500/40 transform translate-y-12"></div>
<div class="absolute top-1/4 left-2/4 w-1/5 h-1 border-t-2 border-t-emerald-500/40 transform translate-y-12"></div>
<div class="absolute top-1/4 left-3/4 w-1/5 h-1 border-t-2 border-t-cyan-500/40 transform translate-y-12"></div>
<!-- Client integration at bottom -->
<div class="col-span-4 mt-16 relative">
<div class="bg-gradient-to-r from-slate-800/30 to-slate-900/20 backdrop-blur border border-slate-700/50 rounded-xl p-6 relative overflow-hidden">
<div class="absolute top-0 left-0 w-24 h-24 bg-indigo-500/10 rounded-full -translate-x-1/2 -translate-y-1/2 blur-xl -z-10"></div>
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="flex items-center">
<div class="w-14 h-14 rounded-lg bg-gradient-to-br from-orange-500/20 to-amber-500/20 flex items-center justify-center mr-6">
<i class="fas fa-meteor text-amber-400 text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-white">Any MCP-Compatible Agent Framework</h3>
</div>
<div class="flex space-x-3 mt-4 md:mt-0">
<div class="px-3 py-1 rounded-lg bg-slate-700/50 text-sm font-mono">AutoGPT</div>
<div class="px-3 py-1 rounded-lg bg-slate-700/50 text-sm font-mono">CrewAI</div>
<div class="px-3 py-1 rounded-lg bg-slate-700/50 text-sm font-mono">BabyAGI</div>
<div class="px-3 py-1 rounded-lg bg-slate-700/50 text-sm font-mono">+ More</div>
</div>
</div>
<p class="mt-6 text-slate-400 text-center">MCO Protocol integrates seamlessly with your existing agent framework through the MCP interface.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-24 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full bg-gradient-to-b from-indigo-900/20 via-slate-900/80 to-slate-900 -z-10"></div>
<div class="absolute -top-[200px] left-0 w-96 h-96 bg-indigo-500 rounded-full blur-[120px] -z-10"></div>
<div class="container mx-auto px-4">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl md:text-5xl font-bold text-white mb-8">Start Orchestrating Smarter AI Agents</h2>
<p class="text-xl text-slate-300 mb-10">Join thousands of developers building more reliable AI systems with MCO Protocol. Free for individual developers, enterprise plans available.</p>
<div class="flex flex-col sm
<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=paradiseDev/testmcosite" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |