Skip to main content
Glama
simple-server.js482 B
// Simple test server that outputs logs over time console.log('Test server starting...') console.log('Listening on port 3000') let counter = 0 const interval = setInterval(() => { counter++ console.log(`Request ${counter} processed`) if (counter % 5 === 0) { console.error(`Warning: High load at request ${counter}`) } }, 1000) // Keep running process.on('SIGTERM', () => { console.log('Shutting down gracefully...') clearInterval(interval) process.exit(0) })

Latest Blog Posts

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/brennancheung/mcp-rewatch'

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