index.html•5.04 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Luno MCP Server Documentation</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
h2 {
color: #34495e;
margin-top: 30px;
}
.feature-list {
background: #ecf0f1;
padding: 20px;
border-radius: 5px;
margin: 20px 0;
}
.feature-list li {
margin: 8px 0;
}
code {
background: #f1f2f6;
padding: 2px 6px;
border-radius: 3px;
font-family: 'Monaco', 'Menlo', monospace;
}
.code-block {
background: #2c3e50;
color: #ecf0f1;
padding: 20px;
border-radius: 5px;
overflow-x: auto;
margin: 20px 0;
}
.links {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin: 30px 0;
}
.link-card {
background: #3498db;
color: white;
padding: 20px;
border-radius: 5px;
text-decoration: none;
transition: background 0.3s;
}
.link-card:hover {
background: #2980b9;
color: white;
text-decoration: none;
}
.status {
background: #27ae60;
color: white;
padding: 10px 20px;
border-radius: 20px;
display: inline-block;
margin: 10px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>🚀 Luno MCP Server</h1>
<div class="status">✅ ENHANCED WITH HISTORICAL DATA</div>
<p>A Model Context Protocol (MCP) server for seamless integration with the Luno cryptocurrency exchange. This server provides comprehensive tools for trading, market analysis, and account management through the MCP framework.</p>
<h2>🚀 Features</h2>
<div class="feature-list">
<ul>
<li><strong>Real-time Market Data</strong>: Get current prices, market overviews, and trading pair information</li>
<li><strong>Trading Operations</strong>: Place orders, cancel orders, and check order status</li>
<li><strong>Account Management</strong>: View balances and transaction history</li>
<li><strong>📈 Historical Data</strong>: Access OHLC candlestick data and price range analysis</li>
<li><strong>Fee Information</strong>: Get trading fees for specific pairs</li>
<li><strong>Multi-Currency Support</strong>: ZAR, EUR, GBP, USD support</li>
</ul>
</div>
<h2>📋 Quick Start</h2>
<div class="code-block">
# Clone the repository
git clone https://github.com/amanasmuei/mcp-luno.git
cd mcp-luno
# Install dependencies
pip install -r requirements.txt
# Configure your API keys
cp .env.example .env
# Edit .env with your Luno API credentials
</div>
<h2>📚 Documentation</h2>
<div class="links">
<a href="CLAUDE_DESKTOP_SETUP.html" class="link-card">
<h3>🔧 Claude Desktop Setup</h3>
<p>Complete setup guide for Claude Desktop integration</p>
</a>
<a href="HISTORICAL_DATA_GUIDE.html" class="link-card">
<h3>📈 Historical Data Guide</h3>
<p>Comprehensive guide for historical price data</p>
</a>
<a href="QUICK_FIX_CLAUDE_DESKTOP.html" class="link-card">
<h3>⚡ Quick Fix Guide</h3>
<p>Troubleshooting common issues</p>
</a>
<a href="donate.html" class="link-card">
<h3>💝 Support Project</h3>
<p>Support the development of this project</p>
</a>
</div>
<h2>🔗 Repository</h2>
<p>Visit the <a href="https://github.com/amanasmuei/mcp-luno" target="_blank">GitHub repository</a> for the latest updates and to contribute to the project.</p>
<hr style="margin: 40px 0; border: none; border-top: 1px solid #ecf0f1;">
<p style="text-align: center; color: #7f8c8d;"><em>Built with ❤️ for the cryptocurrency trading community</em></p>
</div>
</body>
</html>