File size: 41,162 Bytes
0102126 | 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 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent Builder | AI Configuration Platform</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">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#00ff9d',
secondary: '#00b4ff',
dark: '#0a0a0a',
darker: '#050505',
light: '#f0f0f0',
gray: {
800: '#1e1e1e',
700: '#2d2d2d',
600: '#3a3a3a',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Roboto Mono', 'monospace'],
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
'blink': 'blink 1s step-end infinite',
},
keyframes: {
blink: {
'0%, 100%': { opacity: '1' },
'50%': { opacity: '0' },
}
}
}
}
}
</script>
<style>
.terminal-input::before {
content: '> ';
color: #00ff9d;
}
.code-block {
position: relative;
}
.code-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: linear-gradient(to bottom, #00ff9d, #00b4ff);
}
.glow-effect {
box-shadow: 0 0 10px rgba(0, 255, 157, 0.5);
}
.glow-effect:hover {
box-shadow: 0 0 15px rgba(0, 255, 157, 0.7);
}
.sidebar-item:hover {
background: linear-gradient(90deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 255, 157, 0) 100%);
border-left: 2px solid #00ff9d;
}
.sidebar-item.active {
background: linear-gradient(90deg, rgba(0, 255, 157, 0.2) 0%, rgba(0, 255, 157, 0) 100%);
border-left: 2px solid #00ff9d;
}
.tab-item {
position: relative;
}
.tab-item.active::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: #00ff9d;
}
.mcp-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.config-section {
border-left: 1px solid #2d2d2d;
}
.config-section:first-child {
border-left: none;
}
</style>
</head>
<body class="bg-dark text-light font-sans flex h-screen overflow-hidden">
<!-- Sidebar -->
<div class="w-64 bg-darker border-r border-gray-800 flex flex-col">
<div class="p-4 border-b border-gray-800 flex items-center">
<div class="w-8 h-8 rounded-full bg-primary flex items-center justify-center mr-3">
<i class="fas fa-robot text-dark"></i>
</div>
<h1 class="text-xl font-bold">
<span class="text-primary">Agent</span>Builder
</h1>
</div>
<div class="p-4 border-b border-gray-800">
<button class="w-full bg-primary hover:bg-opacity-90 text-dark font-semibold py-2 px-4 rounded-md flex items-center justify-center transition-all">
<i class="fas fa-plus mr-2"></i> New Agent
</button>
</div>
<nav class="flex-1 overflow-y-auto">
<div class="p-2">
<h3 class="text-xs uppercase text-gray-500 font-mono tracking-wider mb-2 px-3">Navigation</h3>
<a href="#" class="sidebar-item active flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<i class="fas fa-sliders-h mr-3 text-primary"></i>
<span>Agent Builder</span>
</a>
<a href="#" class="sidebar-item flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<i class="fas fa-store mr-3 text-secondary"></i>
<span>MCP Store</span>
</a>
<a href="#" class="sidebar-item flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<i class="fas fa-boxes mr-3 text-gray-400"></i>
<span>My Agents</span>
</a>
</div>
<div class="p-2 mt-4">
<h3 class="text-xs uppercase text-gray-500 font-mono tracking-wider mb-2 px-3">Recent Agents</h3>
<a href="#" class="sidebar-item flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<div class="w-2 h-2 rounded-full bg-primary mr-3"></div>
<span>Customer Support Bot</span>
</a>
<a href="#" class="sidebar-item flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<div class="w-2 h-2 rounded-full bg-secondary mr-3"></div>
<span>Data Analyzer</span>
</a>
<a href="#" class="sidebar-item flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<div class="w-2 h-2 rounded-full bg-gray-500 mr-3"></div>
<span>Content Generator</span>
</a>
</div>
</nav>
<div class="p-4 border-t border-gray-800">
<div class="flex items-center">
<div class="w-8 h-8 rounded-full bg-gray-700 flex items-center justify-center mr-3">
<i class="fas fa-user text-gray-400"></i>
</div>
<div>
<div class="text-sm font-medium">John Doe</div>
<div class="text-xs text-gray-500">Admin</div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 flex flex-col overflow-hidden">
<!-- Top Bar -->
<div class="bg-darker border-b border-gray-800 p-4 flex items-center justify-between">
<div class="flex items-center">
<h2 class="text-xl font-bold">
<span class="text-primary">Agent</span> Configuration
</h2>
<div class="ml-4 text-sm bg-gray-800 text-gray-400 px-2 py-1 rounded font-mono">
ID: AGT-<span class="text-primary">7B3K9P</span>
</div>
</div>
<div class="flex items-center">
<div class="relative mr-4">
<input type="text" placeholder="Search agents..." class="bg-gray-800 border border-gray-700 rounded-md pl-10 pr-4 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent w-64">
<i class="fas fa-search absolute left-3 top-3 text-gray-500"></i>
</div>
<button class="bg-gray-800 hover:bg-gray-700 text-light px-4 py-2 rounded-md text-sm font-medium transition-all mr-2">
<i class="fas fa-save mr-2"></i> Save
</button>
<button class="bg-primary hover:bg-opacity-90 text-dark px-4 py-2 rounded-md text-sm font-medium transition-all">
<i class="fas fa-play mr-2"></i> Run Agent
</button>
</div>
</div>
<!-- Content Area -->
<div class="flex-1 overflow-auto p-6">
<div class="max-w-7xl mx-auto">
<!-- Agent Name and Description -->
<div class="mb-8">
<div class="flex items-center mb-2">
<input type="text" placeholder="Agent Name" class="text-2xl font-bold bg-transparent border-none focus:outline-none focus:ring-0 w-full" value="Customer Support Bot">
<button class="ml-2 text-gray-500 hover:text-primary transition-colors">
<i class="fas fa-pencil-alt"></i>
</button>
</div>
<div class="flex items-center">
<textarea placeholder="Agent description..." class="text-sm bg-transparent border-none focus:outline-none focus:ring-0 w-full resize-none text-gray-400">A specialized agent for handling customer inquiries and support tickets.</textarea>
<button class="ml-2 text-gray-500 hover:text-primary transition-colors">
<i class="fas fa-pencil-alt"></i>
</button>
</div>
</div>
<!-- Configuration Tabs -->
<div class="mb-6 border-b border-gray-800">
<div class="flex space-x-8">
<button class="tab-item active pb-3 text-sm font-medium transition-all">
<i class="fas fa-cog mr-2"></i> Configuration
</button>
<button class="tab-item pb-3 text-sm font-medium text-gray-500 hover:text-light transition-all">
<i class="fas fa-terminal mr-2"></i> Testing
</button>
<button class="tab-item pb-3 text-sm font-medium text-gray-500 hover:text-light transition-all">
<i class="fas fa-chart-line mr-2"></i> Analytics
</button>
<button class="tab-item pb-3 text-sm font-medium text-gray-500 hover:text-light transition-all">
<i class="fas fa-history mr-2"></i> Version History
</button>
</div>
</div>
<!-- Configuration Sections -->
<div class="grid grid-cols-1 lg:grid-cols-4 gap-6">
<!-- Provider Section -->
<div class="config-section p-4">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-server mr-2 text-primary"></i> Provider
</h3>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">AI Provider</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option>OpenAI</option>
<option selected>Anthropic</option>
<option>Google</option>
<option>Meta</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">API Key</label>
<div class="relative">
<input type="password" value="sk-...XyZ" class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent font-mono">
<button class="absolute right-3 top-2 text-gray-500 hover:text-primary">
<i class="fas fa-eye"></i>
</button>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Endpoint</label>
<input type="text" value="https://api.anthropic.com/v1" class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent font-mono">
</div>
</div>
</div>
<!-- Model Section -->
<div class="config-section p-4">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-brain mr-2 text-primary"></i> Model
</h3>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Model</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option>Claude 3 Opus</option>
<option selected>Claude 3 Sonnet</option>
<option>Claude 3 Haiku</option>
<option>Claude 2.1</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Temperature</label>
<input type="range" min="0" max="1" step="0.1" value="0.7" class="w-full">
<div class="flex justify-between text-xs text-gray-500 mt-1">
<span>Precise</span>
<span>Balanced</span>
<span>Creative</span>
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Max Tokens</label>
<input type="number" value="4096" class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Stop Sequences</label>
<input type="text" placeholder="Enter sequences separated by commas" class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
</div>
</div>
</div>
<!-- Prompt Section -->
<div class="config-section p-4">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-comment-dots mr-2 text-primary"></i> Prompt
</h3>
<div class="space-y-4">
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">System Prompt</label>
<textarea class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent h-32">You are a customer support agent specialized in resolving technical issues for our SaaS platform. Be polite, professional, and solution-oriented. Always ask clarifying questions if needed, but don't make assumptions. If you don't know the answer, offer to escalate the ticket.</textarea>
</div>
<div>
<label class="block text-sm font-medium text-gray-400 mb-1">Prompt Template</label>
<select class="w-full bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option selected>Custom</option>
<option>Customer Support</option>
<option>Technical Support</option>
<option>Billing Inquiry</option>
</select>
</div>
<div class="flex items-center justify-between">
<button class="text-sm text-primary hover:text-opacity-80 flex items-center">
<i class="fas fa-magic mr-1"></i> Optimize Prompt
</button>
<button class="text-sm text-secondary hover:text-opacity-80 flex items-center">
<i class="fas fa-history mr-1"></i> Version History
</button>
</div>
</div>
</div>
<!-- Tools/MCPs Section -->
<div class="config-section p-4">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-tools mr-2 text-primary"></i> Tools
</h3>
<div class="space-y-4">
<div class="bg-gray-800 rounded-md p-3 border border-gray-700">
<div class="flex items-center justify-between mb-2">
<div class="flex items-center">
<i class="fas fa-search text-secondary mr-2"></i>
<span class="font-medium">Knowledge Base Search</span>
</div>
<div class="flex items-center">
<button class="text-gray-500 hover:text-primary mr-2">
<i class="fas fa-cog"></i>
</button>
<button class="text-gray-500 hover:text-red-500">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<p class="text-xs text-gray-400">Searches the company knowledge base for relevant articles</p>
</div>
<div class="bg-gray-800 rounded-md p-3 border border-gray-700">
<div class="flex items-center justify-between mb-2">
<div class="flex items-center">
<i class="fas fa-ticket-alt text-secondary mr-2"></i>
<span class="font-medium">Ticket Creation</span>
</div>
<div class="flex items-center">
<button class="text-gray-500 hover:text-primary mr-2">
<i class="fas fa-cog"></i>
</button>
<button class="text-gray-500 hover:text-red-500">
<i class="fas fa-times"></i>
</button>
</div>
</div>
<p class="text-xs text-gray-400">Creates support tickets in Zendesk when needed</p>
</div>
<button class="w-full bg-gray-800 hover:bg-gray-700 border border-gray-700 border-dashed text-gray-400 py-3 rounded-md flex items-center justify-center transition-all">
<i class="fas fa-plus mr-2"></i> Add MCP
</button>
<div class="mt-6">
<h4 class="text-sm font-medium text-gray-400 mb-2 flex items-center">
<i class="fas fa-store mr-2"></i> Suggested MCPs
</h4>
<div class="space-y-2">
<div class="flex items-center justify-between p-2 hover:bg-gray-800 rounded-md cursor-pointer">
<div class="flex items-center">
<i class="fas fa-calendar-check text-gray-500 mr-2"></i>
<span class="text-sm">Appointment Scheduler</span>
</div>
<button class="text-xs text-primary hover:text-opacity-80">
Add
</button>
</div>
<div class="flex items-center justify-between p-2 hover:bg-gray-800 rounded-md cursor-pointer">
<div class="flex items-center">
<i class="fas fa-file-invoice-dollar text-gray-500 mr-2"></i>
<span class="text-sm">Billing Lookup</span>
</div>
<button class="text-xs text-primary hover:text-opacity-80">
Add
</button>
</div>
<div class="flex items-center justify-between p-2 hover:bg-gray-800 rounded-md cursor-pointer">
<div class="flex items-center">
<i class="fas fa-chart-pie text-gray-500 mr-2"></i>
<span class="text-sm">Usage Analytics</span>
</div>
<button class="text-xs text-primary hover:text-opacity-80">
Add
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MCP Store Modal (Hidden by default) -->
<div id="mcp-store-modal" class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center z-50 hidden">
<div class="bg-darker border border-gray-800 rounded-lg w-full max-w-4xl max-h-[90vh] overflow-hidden">
<div class="p-4 border-b border-gray-800 flex items-center justify-between">
<h3 class="text-xl font-bold">
<i class="fas fa-store mr-2 text-secondary"></i> MCP Store
</h3>
<button id="close-mcp-modal" class="text-gray-500 hover:text-light">
<i class="fas fa-times"></i>
</button>
</div>
<div class="p-4 border-b border-gray-800">
<div class="flex items-center">
<div class="relative flex-1 mr-4">
<input type="text" placeholder="Search MCPs..." class="bg-gray-800 border border-gray-700 rounded-md pl-10 pr-4 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent w-full">
<i class="fas fa-search absolute left-3 top-3 text-gray-500"></i>
</div>
<select class="bg-gray-800 border border-gray-700 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option>All Categories</option>
<option>Customer Support</option>
<option>Data Processing</option>
<option>Productivity</option>
</select>
</div>
</div>
<div class="overflow-y-auto p-4" style="max-height: calc(90vh - 150px)">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-calendar-check text-secondary mr-2"></i>
Appointment Scheduler
</h4>
<div class="text-xs text-gray-500 mt-1">v2.1.4</div>
</div>
<span class="bg-gray-700 text-primary text-xs px-2 py-1 rounded">Popular</span>
</div>
<p class="text-sm text-gray-400 mb-4">Schedule, reschedule, and manage customer appointments with calendar integration.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 1.2K
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.8
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-file-invoice-dollar text-secondary mr-2"></i>
Billing Lookup
</h4>
<div class="text-xs text-gray-500 mt-1">v1.5.2</div>
</div>
<span class="bg-gray-700 text-primary text-xs px-2 py-1 rounded">Verified</span>
</div>
<p class="text-sm text-gray-400 mb-4">Retrieve customer billing information, invoices, and payment history.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 845
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.6
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-chart-pie text-secondary mr-2"></i>
Usage Analytics
</h4>
<div class="text-xs text-gray-500 mt-1">v3.0.1</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Track and report on product usage metrics for customer accounts.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 723
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.7
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-users text-secondary mr-2"></i>
Team Escalation
</h4>
<div class="text-xs text-gray-500 mt-1">v1.2.0</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Escalate issues to appropriate team members based on expertise.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 512
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.5
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-language text-secondary mr-2"></i>
Multilingual Support
</h4>
<div class="text-xs text-gray-500 mt-1">v2.3.0</div>
</div>
<span class="bg-gray-700 text-primary text-xs px-2 py-1 rounded">New</span>
</div>
<p class="text-sm text-gray-400 mb-4">Automatically detect and respond in customer's preferred language.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 327
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.9
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
<!-- MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg">
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div>
<h4 class="font-medium flex items-center">
<i class="fas fa-sync-alt text-secondary mr-2"></i>
Workflow Automation
</h4>
<div class="text-xs text-gray-500 mt-1">v3.2.1</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Automate repetitive support workflows with customizable triggers.</p>
<div class="flex items-center justify-between">
<div class="flex items-center text-xs text-gray-500">
<i class="fas fa-download mr-1"></i> 1.5K
<i class="fas fa-star ml-3 mr-1 text-yellow-500"></i> 4.8
</div>
<button class="text-xs bg-primary hover:bg-opacity-90 text-dark px-3 py-1 rounded transition-all">
Add to Agent
</button>
</div>
</div>
</div>
</div>
</div>
<div class="p-4 border-t border-gray-800 flex justify-between items-center">
<div class="text-sm text-gray-500">
Showing 6 of 128 MCPs
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 bg-gray-800 border border-gray-700 rounded text-sm">
<i class="fas fa-chevron-left"></i>
</button>
<button class="px-3 py-1 bg-gray-800 border border-gray-700 rounded text-sm">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
// Toggle MCP Store modal
document.querySelector('button:contains("Add MCP")').addEventListener('click', function() {
document.getElementById('mcp-store-modal').classList.remove('hidden');
});
document.getElementById('close-mcp-modal').addEventListener('click', function() {
document.getElementById('mcp-store-modal').classList.add('hidden');
});
// Close modal when clicking outside
document.getElementById('mcp-store-modal').addEventListener('click', function(e) {
if (e.target === this) {
this.classList.add('hidden');
}
});
// Tab switching functionality
const tabs = document.querySelectorAll('.tab-item');
tabs.forEach(tab => {
tab.addEventListener('click', function() {
tabs.forEach(t => t.classList.remove('active', 'text-light'));
tabs.forEach(t => t.classList.add('text-gray-500'));
this.classList.add('active', 'text-light');
this.classList.remove('text-gray-500');
});
});
// Sidebar navigation
const sidebarItems = document.querySelectorAll('.sidebar-item');
sidebarItems.forEach(item => {
item.addEventListener('click', function() {
sidebarItems.forEach(i => i.classList.remove('active'));
this.classList.add('active');
});
});
</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=brainable/se" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |