Filesystem MCP Server

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Filesystem MCP Server Logo</title> <style> body { display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f5f5f5; } .logo-container { width: 400px; height: 400px; background-color: #ffffff; border-radius: 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; } .logo-bg { position: absolute; width: 100%; height: 100%; background: linear-gradient(135deg, #4a90e2 0%, #5637d7 100%); z-index: 1; } .folder { position: relative; width: 200px; height: 160px; background-color: #ffca28; border-radius: 10px; margin-bottom: 20px; z-index: 2; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .folder:before { content: ''; position: absolute; width: 80px; height: 30px; background-color: #ffca28; top: -15px; left: 20px; border-radius: 10px 10px 0 0; } .file { position: absolute; width: 120px; height: 140px; background-color: #ffffff; border-radius: 5px; top: 10px; left: 40px; z-index: 3; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .file:before { content: ''; position: absolute; width: 30px; height: 30px; background-color: #ffffff; top: -15px; right: 0; border-radius: 0 0 0 15px; transform: rotate(45deg); } .file-line { position: absolute; height: 4px; background-color: #e0e0e0; border-radius: 2px; left: 20px; } .file-line:nth-child(1) { width: 80px; top: 30px; } .file-line:nth-child(2) { width: 60px; top: 50px; } .file-line:nth-child(3) { width: 70px; top: 70px; } .file-line:nth-child(4) { width: 50px; top: 90px; } .text { font-family: 'Arial', sans-serif; font-weight: bold; font-size: 24px; color: #ffffff; text-align: center; margin-top: 20px; z-index: 2; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); } .mcp-text { font-family: 'Arial', sans-serif; font-size: 16px; color: #ffffff; opacity: 0.8; z-index: 2; } .download-btn { position: fixed; bottom: 20px; padding: 10px 20px; background-color: #4a90e2; color: white; border: none; border-radius: 5px; cursor: pointer; font-family: 'Arial', sans-serif; font-size: 16px; } .download-btn:hover { background-color: #357abd; } .instructions { position: fixed; top: 20px; background-color: #ffffff; padding: 15px; border-radius: 5px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); font-family: 'Arial', sans-serif; max-width: 600px; } </style> </head> <body> <div class="instructions"> <h2>Logo Creation Instructions:</h2> <ol> <li>Take a screenshot of the logo (the square below)</li> <li>Crop it to 400x400 pixels</li> <li>Save it as a PNG file named "filesystem-mcp-server-logo.png"</li> <li>Place it in your project directory</li> </ol> <p>On macOS, you can take a screenshot by pressing <strong>Command + Shift + 4</strong> and selecting the area.</p> </div> <div class="logo-container"> <div class="logo-bg"></div> <div class="folder"> <div class="file"> <div class="file-line"></div> <div class="file-line"></div> <div class="file-line"></div> <div class="file-line"></div> </div> </div> <div class="text">Filesystem</div> <div class="mcp-text">MCP Server</div> </div> </body> </html>