<!DOCTYPE html>
<html>
<head>
    <title>SDK.finance MCP Server</title>
    <style>
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
               max-width: 800px; margin: 50px auto; padding: 20px;
               background: #f5f5f5; color: #333; }
        .container { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        h1 { color: #2563eb; margin-bottom: 10px; }
        .status { color: #16a34a; font-weight: bold; }
        code { background: #f1f5f9; padding: 2px 6px; border-radius: 4px; font-size: 14px; }
        .section { margin-top: 30px; }
        .section h2 { color: #475569; font-size: 18px; border-bottom: 1px solid #e2e8f0; padding-bottom: 10px; }
        ul { line-height: 1.8; }
        .footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e2e8f0; color: #64748b; font-size: 14px; }
    </style>
</head>
<body>
    <div class="container">
        <h1>SDK.finance MCP Server</h1>
        <p>Status: <span class="status">Running</span></p>
        <p>Domain: <code>mcp.sdk.finance</code></p>

        <div class="section">
            <h2>About</h2>
            <p>This is a Model Context Protocol (MCP) server providing LLM-accessible tools for the SDK.finance financial platform.</p>
        </div>

        <div class="section">
            <h2>Available Tool Categories</h2>
            <ul>
                <li><strong>Authentication</strong> - OAuth 2.0 with OTP support</li>
                <li><strong>Account Management</strong> - Coins, wallets, balances</li>
                <li><strong>Bank Transfers</strong> - Top-ups, withdrawals</li>
                <li><strong>Role Management</strong> - RBAC operations</li>
                <li><strong>And more...</strong> - 695 tools across 20 modules</li>
            </ul>
        </div>

        <div class="section">
            <h2>Integration</h2>
            <p>To use this MCP server with Claude Desktop, configure your <code>claude_desktop_config.json</code>:</p>
            <pre style="background: #1e293b; color: #e2e8f0; padding: 15px; border-radius: 6px; overflow-x: auto;">
{
  "mcpServers": {
    "sdk-finance": {
      "url": "https://mcp.sdk.finance/mcp"
    }
  }
}</pre>
        </div>

        <div class="footer">
            <p>SDK.finance MCP Server | <a href="/health">Health Check</a> | <a href="/info">API Info</a></p>
        </div>
    </div>
</body>
</html>