Skip to main content
Glama

MCP Memory Server

by jessefreitas
dashboard-server.js850 B
import fs from 'fs'; import http from 'http'; import path from 'path'; import { fileURLToPath } from 'url'; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const port = 3000; const server = http.createServer((req, res) => { if (req.url === '/' || req.url === '/dashboard') { fs.readFile(path.join(__dirname, 'dashboard.html'), (err, data) => { if (err) { res.writeHead(404); res.end('Dashboard not found'); return; } res.writeHead(200, { 'Content-Type': 'text/html' }); res.end(data); }); } else { res.writeHead(404); res.end('Not found'); } }); server.listen(port, () => { console.log(`🌐 Dashboard disponível em: http://localhost:${port}`); console.log('🎯 Acesse /dashboard para a interface do MCP Memory Server'); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jessefreitas/mcp_memory'

If you have feedback or need assistance with the MCP directory API, please join our Discord server