File size: 45,538 Bytes
a64540a | 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 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agent Builder | MCP Store</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;
}
.category-chip {
transition: all 0.2s ease;
}
.category-chip.active {
background-color: rgba(0, 255, 157, 0.1);
border-color: #00ff9d;
color: #00ff9d;
}
.mcp-detail-modal {
backdrop-filter: blur(5px);
}
.product-logo {
width: 36px;
height: 36px;
object-fit: contain;
border-radius: 6px;
background: white;
padding: 4px;
}
</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 flex items-center py-2 px-3 rounded-md mb-1 transition-all">
<i class="fas fa-sliders-h mr-3 text-gray-400"></i>
<span>Agent Builder</span>
</a>
<a href="#" class="sidebar-item active 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 - MCP Store -->
<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">
<i class="fas fa-store mr-2 text-secondary"></i>
<span>MCP</span> Store
</h2>
<div class="ml-4 text-sm bg-gray-800 text-gray-400 px-2 py-1 rounded font-mono">
<span class="text-primary">128</span> MCPs available
</div>
</div>
<div class="flex items-center">
<div class="relative 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-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-filter mr-2"></i> Filters
</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-upload mr-2"></i> Submit MCP
</button>
</div>
</div>
<!-- Content Area -->
<div class="flex-1 overflow-auto p-6">
<div class="max-w-7xl mx-auto">
<!-- Categories -->
<div class="mb-6 overflow-x-auto">
<div class="flex space-x-2 pb-2">
<button class="category-chip active px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
All Categories
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-headset mr-2"></i> Customer Support
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-database mr-2"></i> Data Processing
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-tasks mr-2"></i> Productivity
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-chart-line mr-2"></i> Analytics
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-globe mr-2"></i> Web Services
</button>
<button class="category-chip px-4 py-2 rounded-full border border-gray-700 text-sm whitespace-nowrap">
<i class="fas fa-cogs mr-2"></i> Integrations
</button>
</div>
</div>
<!-- Featured MCPs -->
<div class="mb-8">
<h3 class="text-lg font-semibold mb-4 flex items-center">
<i class="fas fa-star mr-2 text-yellow-500"></i> Featured MCPs
</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Featured MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg relative">
<div class="absolute top-3 right-3 bg-yellow-600 text-white text-xs px-2 py-1 rounded flex items-center">
<i class="fas fa-crown mr-1"></i> Featured
</div>
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7a/Zendesk_logo.png" alt="Zendesk" class="product-logo mr-3">
<div>
<h4 class="font-medium">Zendesk MCP</h4>
<div class="text-xs text-gray-500 mt-1">v2.1.4 by <span class="text-primary">Zendesk</span></div>
</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">Full integration with Zendesk Support, Talk, and Guide. Create, update, and search tickets with AI-powered suggestions.</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.8K
<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>
<!-- Featured MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg relative">
<div class="absolute top-3 right-3 bg-yellow-600 text-white text-xs px-2 py-1 rounded flex items-center">
<i class="fas fa-crown mr-1"></i> Featured
</div>
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8d/DuckDuckGo_logo.svg" alt="DuckDuckGo" class="product-logo mr-3">
<div>
<h4 class="font-medium">DuckDuckGo MCP</h4>
<div class="text-xs text-gray-500 mt-1">v1.5.2 by <span class="text-primary">DuckDuckGo</span></div>
</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">Privacy-focused search integration with instant answers, private search results, and zero tracking.</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.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>
<!-- Featured MCP Card -->
<div class="mcp-card bg-gray-800 border border-gray-700 rounded-lg overflow-hidden transition-all duration-300 hover:shadow-lg relative">
<div class="absolute top-3 right-3 bg-yellow-600 text-white text-xs px-2 py-1 rounded flex items-center">
<i class="fas fa-crown mr-1"></i> Featured
</div>
<div class="p-4">
<div class="flex items-start justify-between mb-3">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8b/HubSpot_Logo.svg" alt="HubSpot" class="product-logo mr-3">
<div>
<h4 class="font-medium">HubSpot MCP</h4>
<div class="text-xs text-gray-500 mt-1">v3.0.1 by <span class="text-primary">HubSpot</span></div>
</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">Complete CRM integration with contacts, companies, deals, and marketing automation workflows.</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> 923
<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>
<!-- All MCPs -->
<div>
<div class="flex items-center justify-between mb-4">
<h3 class="text-lg font-semibold flex items-center">
<i class="fas fa-boxes mr-2 text-gray-400"></i> All MCPs
</h3>
<div class="flex items-center text-sm text-gray-500">
<span class="mr-2">Sort by:</span>
<select class="bg-gray-800 border border-gray-700 rounded-md px-3 py-1 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option>Most Popular</option>
<option>Highest Rated</option>
<option>Newest</option>
<option>Recently Updated</option>
</select>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- 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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/4a/Amazon_AWS_logo.svg" alt="AWS" class="product-logo mr-3">
<div>
<h4 class="font-medium">AWS MCP</h4>
<div class="text-xs text-gray-500 mt-1">v2.3.0 by <span class="text-primary">Amazon</span></div>
</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Access AWS services including EC2, S3, Lambda, and more with secure IAM role 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.5K
<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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7b/Salesforce.com_logo.svg" alt="Salesforce" class="product-logo mr-3">
<div>
<h4 class="font-medium">Salesforce MCP</h4>
<div class="text-xs text-gray-500 mt-1">v3.2.1 by <span class="text-primary">Salesforce</span></div>
</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">Full CRM integration with accounts, contacts, opportunities, and custom objects.</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.1K
<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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/44/Microsoft_logo.svg" alt="Microsoft" class="product-logo mr-3">
<div>
<h4 class="font-medium">Microsoft 365 MCP</h4>
<div class="text-xs text-gray-500 mt-1">v2.0.5 by <span class="text-primary">Microsoft</span></div>
</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Integrate with Outlook, Teams, SharePoint, and other Microsoft 365 services.</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> 892
<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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/e/e9/Notion-logo.svg" alt="Notion" class="product-logo mr-3">
<div>
<h4 class="font-medium">Notion MCP</h4>
<div class="text-xs text-gray-500 mt-1">v1.8.3 by <span class="text-primary">Notion</span></div>
</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Read and write to Notion databases, pages, and blocks with advanced query capabilities.</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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7e/Gmail_icon_%282020%29.svg" alt="Gmail" class="product-logo mr-3">
<div>
<h4 class="font-medium">Gmail MCP</h4>
<div class="text-xs text-gray-500 mt-1">v1.4.2 by <span class="text-primary">Google</span></div>
</div>
</div>
</div>
<p class="text-sm text-gray-400 mb-4">Send, receive, and manage emails with Gmail API integration and smart categorization.</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.3K
<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 class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/4/45/Stripe_logo%2C_revised_2016.svg" alt="Stripe" class="product-logo mr-3">
<div>
<h4 class="font-medium">Stripe MCP</h4>
<div class="text-xs text-gray-500 mt-1">v2.1.0 by <span class="text-primary">Stripe</span></div>
</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">Process payments, manage subscriptions, and handle refunds through Stripe's API.</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> 987
<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>
</div>
<!-- Pagination -->
<div class="mt-8 flex justify-between items-center">
<div class="text-sm text-gray-500">
Showing 1-9 of 128 MCPs
</div>
<div class="flex space-x-2">
<button class="px-4 py-2 bg-gray-800 border border-gray-700 rounded text-sm flex items-center disabled:opacity-50" disabled>
<i class="fas fa-chevron-left mr-2"></i> Previous
</button>
<button class="px-4 py-2 bg-gray-800 border border-gray-700 rounded text-sm flex items-center">
Next <i class="fas fa-chevron-right ml-2"></i>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- MCP Detail Modal (Hidden by default) -->
<div id="mcp-detail-modal" class="fixed inset-0 bg-black bg-opacity-70 flex items-center justify-center z-50 hidden mcp-detail-modal">
<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">
<div class="flex items-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7a/Zendesk_logo.png" alt="Zendesk" class="product-logo mr-3">
<h3 class="text-xl font-bold">Zendesk MCP</h3>
</div>
<button id="close-mcp-detail" class="text-gray-500 hover:text-light">
<i class="fas fa-times"></i>
</button>
</div>
<div class="overflow-y-auto p-6" style="max-height: calc(90vh - 120px)">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<div class="lg:col-span-2">
<div class="mb-6">
<h4 class="text-lg font-semibold mb-2">Description</h4>
<p class="text-gray-400">
The Zendesk MCP provides complete integration with Zendesk's customer service platform including Support, Talk, and Guide products.
It allows your AI agent to create, update, and search tickets with AI-powered suggestions for responses and categorization.
The MCP supports attachments, custom fields, and real-time updates.
</p>
</div>
<div class="mb-6">
<h4 class="text-lg font-semibold mb-2">Features</h4>
<ul class="list-disc list-inside text-gray-400 space-y-2">
<li>Create and manage support tickets with all field types</li>
<li>Search tickets with advanced filtering and sorting</li>
<li>AI-powered response suggestions based on ticket content</li>
<li>Handle attachments and inline images</li>
<li>Support for Zendesk Talk (voice) and Chat</li>
<li>Access Help Center articles and community posts</li>
<li>Real-time webhook notifications for ticket updates</li>
<li>Support for custom ticket forms and fields</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-2">Configuration</h4>
<div class="bg-gray-800 rounded-md p-4 border border-gray-700">
<div class="mb-4">
<label class="block text-sm font-medium text-gray-400 mb-1">Zendesk Subdomain</label>
<div class="flex">
<input type="text" placeholder="yourdomain" class="flex-1 bg-gray-700 border border-gray-600 rounded-l-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<div class="bg-gray-600 px-3 py-2 text-sm border-t border-r border-b border-gray-600 rounded-r-md">.zendesk.com</div>
</div>
</div>
<div class="mb-4">
<label class="block text-sm font-medium text-gray-400 mb-1">Authentication Method</label>
<select class="w-full bg-gray-700 border border-gray-600 rounded-md px-3 py-2 text-sm focus:outline-none focus:ring-1 focus:ring-primary focus:border-transparent">
<option>API Token</option>
<option>OAuth 2.0</option>
<option>Basic Auth</option>
</select>
</div>
<div class="flex items-center justify-between">
<div class="flex items-center">
<input type="checkbox" id="enable-voice" class="mr-2" checked>
<label for="enable-voice" class="text-sm text-gray-400">Enable Zendesk Talk</label>
</div>
<div class="flex items-center">
<input type="checkbox" id="enable-guide" class="mr-2" checked>
<label for="enable-guide" class="text-sm text-gray-400">Enable Help Center</label>
</div>
</div>
</div>
</div>
</div>
<div>
<div class="bg-gray-800 rounded-md p-4 border border-gray-700 mb-6">
<div class="flex items-center justify-between mb-4">
<div>
<div class="text-sm text-gray-500">Version</div>
<div class="font-medium">v2.1.4</div>
</div>
<div>
<div class="text-sm text-gray-500">Publisher</div>
<div class="font-medium text-primary">Zendesk</div>
</div>
</div>
<div class="flex items-center justify-between mb-4">
<div>
<div class="text-sm text-gray-500">Downloads</div>
<div class="font-medium">1,845</div>
</div>
<div>
<div class="text-sm text-gray-500">Rating</div>
<div class="font-medium flex items-center">
<i class="fas fa-star text-yellow-500 mr-1"></i> 4.9
</div>
</div>
</div>
<div class="mb-4">
<div class="text-sm text-gray-500 mb-2">Categories</div>
<div class="flex flex-wrap gap-2">
<span class="px-2 py-1 bg-gray-700 text-xs rounded">Customer Support</span>
<span class="px-2 py-1 bg-gray-700 text-xs rounded">Ticketing</span>
<span class="px-2 py-1 bg-gray-700 text-xs rounded">CRM</span>
</div>
</div>
<div class="mb-4">
<div class="text-sm text-gray-500 mb-2">Compatibility</div>
<div class="flex items-center text-sm">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Works with all major AI providers</span>
</div>
</div>
<button class="w-full bg-primary hover:bg-opacity-90 text-dark font-medium py-2 px-4 rounded-md flex items-center justify-center transition-all mb-3">
<i class="fas fa-plus mr-2"></i> Add to Agent
</button>
<button class="w-full bg-gray-700 hover:bg-gray-600 text-light font-medium py-2 px-4 rounded-md flex items-center justify-center transition-all">
<i class="fas fa-bookmark mr-2"></i> Save for Later
</button>
</div>
<div class="bg-gray-800 rounded-md p-4 border border-gray-700">
<h4 class="text-lg font-semibold mb-3">Recent Updates</h4>
<div class="space-y-4">
<div>
<div class="text-sm text-primary mb-1">v2.1.4 - June 2023</div>
<p class="text-xs text-gray-400">Added support for ticket forms and custom fields. Improved error handling for API limits.</p>
</div>
<div>
<div class="text-sm text-primary mb-1">v2.0.0 - March 2023</div>
<p class="text-xs text-gray-400">Complete rewrite with new API and support for Zendesk Talk and Guide integration.</p>
</div>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-6">
<h4 class="text-lg font-semibold mb-4">Similar MCPs</h4>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div class="bg-gray-800 p-3 rounded-md border border-gray-700 hover:border-primary transition-colors cursor-pointer">
<div class="flex items-center mb-2">
<img src="https://upload.wikimedia.org/wikipedia/commons/8/8b/Freshworks_logo.svg" alt="Freshdesk" class="product-logo mr-2">
<span class="font-medium">Freshdesk MCP</span>
</div>
<p class="text-xs text-gray-400">Alternative customer support ticketing system with similar features.</p>
</div>
<div class="bg-gray-800 p-3 rounded-md border border-gray-700 hover:border-primary transition-colors cursor-pointer">
<div class="flex items-center mb-2">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7b/Salesforce.com_logo.svg" alt="Service Cloud" class="product-logo mr-2">
<span class="font-medium">Service Cloud MCP</span>
</div>
<p class="text-xs text-gray-400">Enterprise-grade customer service platform from Salesforce.</p>
</div>
<div class="bg-gray-800 p-3 rounded-md border border-gray-700 hover:border-primary transition-colors cursor-pointer">
<div class="flex items-center mb-2">
<img src="https://upload.wikimedia.org/wikipedia/commons/7/7e/Intercom_logo.svg" alt="Intercom" class="product-logo mr-2">
<span class="font-medium">Intercom MCP</span>
</div>
<p class="text-xs text-gray-400">Conversational support platform with messaging-first approach.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
// Category chip selection
const categoryChips = document.querySelectorAll('.category-chip');
categoryChips.forEach(chip => {
chip.addEventListener('click', function() {
categoryChips.forEach(c => c.classList.remove('active'));
this.classList.add('active');
});
});
// MCP detail modal
const mcpCards = document.querySelectorAll('.mcp-card');
mcpCards.forEach(card => {
card.addEventListener('click', function() {
document.getElementById('mcp-detail-modal').classList.remove('hidden');
});
});
document.getElementById('close-mcp-detail').addEventListener('click', function() {
document.getElementById('mcp-detail-modal').classList.add('hidden');
});
// Close modal when clicking outside
document.getElementById('mcp-detail-modal').addEventListener('click', function(e) {
if (e.target === this) {
this.classList.add('hidden');
}
});
// 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/se2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |