<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MCP Agent Mail</title>
<meta name="description" content="MCP Agent Mail web UI" />
<style>
:root {
color-scheme: light;
font-family: "Iosevka", "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: radial-gradient(circle at top, #f3f4f6, #e5e7eb 60%, #d1d5db 100%);
color: #0f172a;
}
main {
max-width: 720px;
padding: 40px 32px;
background: #ffffff;
border: 1px solid #e2e8f0;
box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
h1 {
font-size: 32px;
letter-spacing: -0.02em;
margin: 0 0 12px;
}
p {
margin: 0 0 12px;
line-height: 1.5;
}
code {
background: #f8fafc;
padding: 2px 6px;
border-radius: 6px;
border: 1px solid #e2e8f0;
}
</style>
</head>
<body>
<main>
<h1>MCP Agent Mail</h1>
<p>This is the static web UI root. Build your SPA into the <code>web/</code> directory.</p>
<p>API endpoints now live under <code>/api</code>.</p>
</main>
</body>
</html>