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
simple-server.js•482 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)
})