|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <title>PromptMesh</title> |
| 7 | + <meta name="description" content="PromptMesh – Modular LLM tooling built on the Model Context Protocol."> |
| 8 | + <link rel="icon" href="favicon.ico" type="image/x-icon" /> |
| 9 | + |
| 10 | + <script src="https://cdn.tailwindcss.com"></script> |
| 11 | + |
| 12 | + <script> |
| 13 | + tailwind.config = { |
| 14 | + theme: { |
| 15 | + extend: { |
| 16 | + fontFamily: { |
| 17 | + sans: ['Inter', 'sans-serif'], |
| 18 | + }, |
| 19 | + } |
| 20 | + } |
| 21 | + } |
| 22 | + </script> |
| 23 | + |
| 24 | + <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet" /> |
| 25 | + </head> |
| 26 | + <body class="bg-zinc-950 text-white min-h-screen flex flex-col items-center justify-center px-4"> |
| 27 | + <main class="max-w-xl w-full text-center"> |
| 28 | + <img src="./logo-dark-transparent.png" alt="PromptMesh Logo" class="mx-auto w-40 h-40 mb-6" /> |
| 29 | + |
| 30 | + <h1 class="text-4xl font-bold tracking-tight mb-4">PromptMesh</h1> |
| 31 | + <p class="text-zinc-400 text-lg leading-relaxed mb-8"> |
| 32 | + PromptMesh is a modular ecosystem of open-source tools for building LLM-native infrastructure using the |
| 33 | + <a href="https://modelcontextprotocol.io" class="text-sky-400 hover:underline" target="_blank">Model Context Protocol (MCP)</a>. |
| 34 | + </p> |
| 35 | + |
| 36 | + <div class="grid gap-4"> |
| 37 | + <a href="https://github.com/promptmesh/easymcp" target="_blank" class="block bg-zinc-800 hover:bg-zinc-700 transition rounded-lg px-6 py-4 text-left shadow"> |
| 38 | + <h2 class="text-lg font-semibold text-white">EasyMCP</h2> |
| 39 | + <p class="text-zinc-400 text-sm">Python SDK for orchestrating MCP servers and tools.</p> |
| 40 | + </a> |
| 41 | + |
| 42 | + <a href="https://github.com/promptmesh/semantictool" target="_blank" class="block bg-zinc-800 hover:bg-zinc-700 transition rounded-lg px-6 py-4 text-left shadow"> |
| 43 | + <h2 class="text-lg font-semibold text-white">SemanticTool</h2> |
| 44 | + <p class="text-zinc-400 text-sm">Semantic discovery and tool invocation microservice with REST endpoints.</p> |
| 45 | + </a> |
| 46 | + |
| 47 | + <a href="https://github.com/promptmesh/relaymcp" target="_blank" class="block bg-zinc-800 hover:bg-zinc-700 transition rounded-lg px-6 py-4 text-left shadow"> |
| 48 | + <h2 class="text-lg font-semibold text-white">RelayMCP</h2> |
| 49 | + <p class="text-zinc-400 text-sm">Session-aware OpenAPI gateway for routing REST to MCP tools.</p> |
| 50 | + </a> |
| 51 | + </div> |
| 52 | + </main> |
| 53 | + |
| 54 | + <footer class="mt-16 text-sm text-zinc-500"> |
| 55 | + © 2025 PromptMesh · <a href="https://github.com/promptmesh" class="hover:underline">GitHub</a> |
| 56 | + </footer> |
| 57 | + </body> |
| 58 | +</html> |
0 commit comments