clawdbot-workspace/mcp-diagrams/mcp-combos-graphic-v2.html
2026-01-28 23:00:58 -05:00

502 lines
13 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920, height=1080">
<title>MCP Power Combos</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
width: 1920px;
height: 1080px;
color: white;
overflow: hidden;
position: relative;
}
/* Animated background grid */
.bg-grid {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image:
linear-gradient(rgba(124, 58, 237, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
background-size: 50px 50px;
opacity: 0.5;
}
/* Glowing orbs background */
.orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.4;
}
.orb1 { width: 400px; height: 400px; background: #7c3aed; top: -100px; left: -100px; }
.orb2 { width: 300px; height: 300px; background: #00d4ff; bottom: -50px; right: 200px; }
.orb3 { width: 250px; height: 250px; background: #f472b6; top: 200px; right: -50px; }
.container {
position: relative;
z-index: 1;
padding: 50px 80px;
height: 100%;
display: flex;
flex-direction: column;
}
/* Header */
.header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 40px;
}
.header-left h1 {
font-size: 4rem;
font-weight: 900;
background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.1;
}
.header-left .subtitle {
font-size: 1.4rem;
color: #a5b4fc;
margin-top: 10px;
font-weight: 500;
}
/* Main flow section */
.main-flow {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
margin-bottom: 50px;
padding: 30px 0;
}
.flow-box {
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.flow-icon {
width: 100px;
height: 100px;
border-radius: 24px;
display: flex;
align-items: center;
justify-content: center;
font-size: 3rem;
position: relative;
}
.flow-icon.user {
background: linear-gradient(135deg, #f472b6, #ec4899);
box-shadow: 0 10px 40px rgba(244, 114, 182, 0.4);
}
.flow-icon.mcp {
background: linear-gradient(135deg, #7c3aed, #4f46e5);
box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
width: 140px;
height: 140px;
font-size: 4rem;
}
.flow-icon.action {
background: linear-gradient(135deg, #22c55e, #10b981);
box-shadow: 0 10px 40px rgba(34, 197, 94, 0.4);
}
.flow-label {
font-size: 1.1rem;
font-weight: 700;
color: #e2e8f0;
}
.flow-sublabel {
font-size: 0.85rem;
color: #a5b4fc;
max-width: 120px;
text-align: center;
}
.flow-arrow {
font-size: 3rem;
color: #4f46e5;
display: flex;
flex-direction: column;
align-items: center;
}
.flow-arrow .arrow-label {
font-size: 0.75rem;
color: #a5b4fc;
margin-top: 5px;
}
/* Combo cards row */
.combos-row {
display: flex;
gap: 25px;
flex: 1;
}
.combo-card {
flex: 1;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 30px;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.combo-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: var(--accent);
}
.combo-card.blue { --accent: linear-gradient(90deg, #00d4ff, #0ea5e9); --glow: rgba(0, 212, 255, 0.2); }
.combo-card.purple { --accent: linear-gradient(90deg, #a855f7, #7c3aed); --glow: rgba(168, 85, 247, 0.2); }
.combo-card.pink { --accent: linear-gradient(90deg, #f472b6, #ec4899); --glow: rgba(244, 114, 182, 0.2); }
.combo-card.green { --accent: linear-gradient(90deg, #22c55e, #10b981); --glow: rgba(34, 197, 94, 0.2); }
/* Visual icon cluster at top of card */
.card-visual {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin-bottom: 25px;
padding: 20px;
background: rgba(0,0,0,0.2);
border-radius: 16px;
}
.tool-icon {
width: 60px;
height: 60px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
background: rgba(255,255,255,0.1);
border: 2px solid rgba(255,255,255,0.2);
}
.connector {
display: flex;
flex-direction: column;
align-items: center;
}
.connector-line {
width: 40px;
height: 3px;
background: linear-gradient(90deg, transparent, #7c3aed, transparent);
}
.connector-plus {
font-size: 1.5rem;
color: #a855f7;
font-weight: 700;
}
/* Speech bubble for command */
.speech-bubble {
background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(79, 70, 229, 0.1));
border: 1px solid rgba(124, 58, 237, 0.3);
border-radius: 16px;
padding: 20px;
position: relative;
margin-bottom: 20px;
flex: 1;
}
.speech-bubble::before {
content: '💬';
position: absolute;
top: -15px;
left: 20px;
font-size: 1.5rem;
}
.speech-bubble .label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: #a5b4fc;
margin-bottom: 10px;
}
.speech-bubble .command {
font-size: 1.05rem;
color: #fff;
font-style: italic;
line-height: 1.5;
}
/* Result section */
.result-section {
display: flex;
align-items: center;
gap: 15px;
padding: 15px;
background: rgba(34, 197, 94, 0.1);
border-radius: 12px;
border: 1px solid rgba(34, 197, 94, 0.2);
}
.result-icon {
width: 45px;
height: 45px;
border-radius: 12px;
background: linear-gradient(135deg, #22c55e, #10b981);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
flex-shrink: 0;
}
.result-text {
font-size: 0.95rem;
color: #86efac;
font-weight: 600;
line-height: 1.4;
}
/* Bottom tagline */
.bottom-bar {
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
padding: 25px 50px;
background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
border-radius: 20px;
border: 1px solid rgba(124, 58, 237, 0.2);
}
.tagline {
font-size: 1.8rem;
font-weight: 700;
text-align: center;
}
.tagline .highlight {
background: linear-gradient(135deg, #00d4ff, #a855f7);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* Person illustration */
.person-visual {
display: flex;
flex-direction: column;
align-items: center;
}
.person-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
background: linear-gradient(135deg, #f472b6, #ec4899);
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
border: 4px solid rgba(255,255,255,0.2);
box-shadow: 0 10px 30px rgba(244, 114, 182, 0.3);
}
.speech-line {
width: 3px;
height: 30px;
background: linear-gradient(to bottom, #f472b6, transparent);
margin: 10px 0;
}
.says-box {
background: rgba(244, 114, 182, 0.2);
border: 1px solid rgba(244, 114, 182, 0.3);
border-radius: 12px;
padding: 12px 20px;
font-size: 0.9rem;
color: #f9a8d4;
font-weight: 600;
max-width: 180px;
text-align: center;
}
</style>
</head>
<body>
<div class="bg-grid"></div>
<div class="orb orb1"></div>
<div class="orb orb2"></div>
<div class="orb orb3"></div>
<div class="container">
<div class="header">
<div class="header-left">
<h1>The Real Power:<br/>Combining Tools</h1>
<div class="subtitle">Your CRM becomes an intelligent assistant that actually does things</div>
</div>
</div>
<!-- Main flow visualization -->
<div class="main-flow">
<div class="person-visual">
<div class="person-avatar">🧑‍💼</div>
<div class="speech-line"></div>
<div class="says-box">"Just tell it what you need"</div>
</div>
<div class="flow-arrow">
<span></span>
<span class="arrow-label">speaks to</span>
</div>
<div class="flow-box">
<div class="flow-icon mcp">🧠</div>
<div class="flow-label">MCP Server</div>
<div class="flow-sublabel">Understands & orchestrates</div>
</div>
<div class="flow-arrow">
<span></span>
<span class="arrow-label">triggers</span>
</div>
<div class="flow-box">
<div class="flow-icon action"></div>
<div class="flow-label">GHL Actions</div>
<div class="flow-sublabel">Executes automatically</div>
</div>
<div class="flow-arrow">
<span></span>
<span class="arrow-label">delivers</span>
</div>
<div class="flow-box">
<div class="flow-icon" style="background: linear-gradient(135deg, #fbbf24, #f59e0b); box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);">🎯</div>
<div class="flow-label">Results</div>
<div class="flow-sublabel">Done. No clicking around.</div>
</div>
</div>
<!-- Combo cards -->
<div class="combos-row">
<div class="combo-card blue">
<div class="card-visual">
<div class="tool-icon">📅</div>
<div class="connector">
<div class="connector-plus">+</div>
</div>
<div class="tool-icon">💬</div>
</div>
<div class="speech-bubble">
<div class="label">You say:</div>
<div class="command">"Check my calendar and text the client if I'm free tomorrow"</div>
</div>
<div class="result-section">
<div class="result-icon"></div>
<div class="result-text">Auto-checks availability & sends personalized text</div>
</div>
</div>
<div class="combo-card purple">
<div class="card-visual">
<div class="tool-icon">🔍</div>
<div class="connector">
<div class="connector-plus">+</div>
</div>
<div class="tool-icon">📧</div>
</div>
<div class="speech-bubble">
<div class="label">You say:</div>
<div class="command">"Find competitor info and draft an outreach email"</div>
</div>
<div class="result-section">
<div class="result-icon"></div>
<div class="result-text">Researches web & creates personalized email draft</div>
</div>
</div>
<div class="combo-card pink">
<div class="card-visual">
<div class="tool-icon">💼</div>
<div class="connector">
<div class="connector-plus">+</div>
</div>
<div class="tool-icon">🔔</div>
</div>
<div class="speech-bubble">
<div class="label">You say:</div>
<div class="command">"Alert Slack when a deal moves to Closed Won"</div>
</div>
<div class="result-section">
<div class="result-icon"></div>
<div class="result-text">Team gets instant win notifications automatically</div>
</div>
</div>
<div class="combo-card green">
<div class="card-visual">
<div class="tool-icon">📊</div>
<div class="connector">
<div class="connector-plus">+</div>
</div>
<div class="tool-icon">📝</div>
</div>
<div class="speech-bubble">
<div class="label">You say:</div>
<div class="command">"Summarize pipeline and add to my Monday brief"</div>
</div>
<div class="result-section">
<div class="result-icon"></div>
<div class="result-text">Weekly report generated & saved automatically</div>
</div>
</div>
</div>
<!-- Bottom tagline -->
<div class="bottom-bar">
<div class="tagline">
This isn't just API access — it's your <span class="highlight">CRM on autopilot</span>, controlled by natural language
</div>
</div>
</div>
</body>
</html>