Skip to main content
Glama

SuiAgentic

by AnhQuan2004
base.html6.75 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="ContextMore - Intelligent Document Search and Retrieval"> <meta name="theme-color" content="#ffffff"> <title>{% block title %}ContextMore{% endblock %}</title> <script src="https://cdn.tailwindcss.com"></script> <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet"> <style> body { font-family: 'Inter', sans-serif; } </style> </head> <body class="min-h-screen bg-gray-50"> <!-- Navigation --> <nav class="bg-white shadow-sm sticky top-0 z-50"> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="flex justify-between h-16"> <div class="flex"> <div class="flex-shrink-0 flex items-center"> <a href="/" class="flex items-center gap-2 hover:opacity-75 transition-opacity"> <img src="/static/logo.svg" alt="ContextMore logo" class="h-8 w-8"> <span class="text-xl font-semibold text-gray-900">ContextMore</span> </a> </div> <div class="hidden sm:ml-6 sm:flex sm:space-x-8"> <a href="/" class="{% if request.url.path == '/' %}border-blue-500 text-gray-900{% else %}border-transparent text-gray-500{% endif %} hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium transition-colors"> Home </a> <a href="/embed" class="{% if request.url.path == '/embed' %}border-blue-500 text-gray-900{% else %}border-transparent text-gray-500{% endif %} hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium transition-colors"> Embed </a> <a href="/retrieve" class="{% if request.url.path == '/retrieve' %}border-blue-500 text-gray-900{% else %}border-transparent text-gray-500{% endif %} hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium transition-colors"> Retrieve </a> </div> </div> <!-- Mobile menu button --> <div class="flex items-center sm:hidden"> <button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500" aria-controls="mobile-menu" aria-expanded="false"> <span class="sr-only">Open main menu</span> <!-- Icon when menu is closed --> <svg class="block h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> </svg> </button> </div> </div> </div> <!-- Mobile menu --> <div class="sm:hidden hidden" id="mobile-menu"> <div class="pt-2 pb-3 space-y-1"> <a href="/" class="{% if request.url.path == '/' %}bg-blue-50 border-blue-500 text-blue-700{% else %}border-transparent text-gray-500{% endif %} block pl-3 pr-4 py-2 border-l-4 text-base font-medium hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 transition-colors"> Home </a> <a href="/embed" class="{% if request.url.path == '/embed' %}bg-blue-50 border-blue-500 text-blue-700{% else %}border-transparent text-gray-500{% endif %} block pl-3 pr-4 py-2 border-l-4 text-base font-medium hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 transition-colors"> Embed </a> <a href="/retrieve" class="{% if request.url.path == '/retrieve' %}bg-blue-50 border-blue-500 text-blue-700{% else %}border-transparent text-gray-500{% endif %} block pl-3 pr-4 py-2 border-l-4 text-base font-medium hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 transition-colors"> Retrieve </a> </div> </div> </nav> <!-- Main Content --> <main class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"> {% block content %}{% endblock %} </main> <!-- Footer --> <footer class="bg-white mt-auto border-t border-gray-200"> <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"> <div class="flex justify-between items-center"> <div class="text-sm text-gray-500"> © {{ year }} ContextMore. All rights reserved. </div> <div class="flex space-x-6"> <a href="#" class="text-gray-400 hover:text-gray-500"> <span class="sr-only">GitHub</span> <svg class="h-6 w-6" fill="currentColor" viewBox="0 0 24 24"> <path fill-rule="evenodd" d="M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z" clip-rule="evenodd" /> </svg> </a> </div> </div> </div> </footer> <script> // Mobile menu toggle document.getElementById('mobile-menu-button').addEventListener('click', function() { const menu = document.getElementById('mobile-menu'); menu.classList.toggle('hidden'); }); </script> </body> </html>

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AnhQuan2004/mcp_agent'

If you have feedback or need assistance with the MCP directory API, please join our Discord server