Skip to main content
Glama
index.ts793 B
import { DevelopmentToolsMCPServer } from './server.js'; // Handle graceful shutdown process.on('SIGINT', async () => { console.error('Shutting down...'); process.exit(0); }); process.on('SIGTERM', async () => { console.error('Shutting down...'); process.exit(0); }); // Handle uncaught errors process.on('uncaughtException', (error) => { console.error('Uncaught exception:', error); process.exit(1); }); process.on('unhandledRejection', (reason, promise) => { console.error('Unhandled rejection at:', promise, 'reason:', reason); process.exit(1); }); // Start the server async function main() { const server = new DevelopmentToolsMCPServer(); await server.run(); } main().catch((error) => { console.error('Failed to start server:', error); process.exit(1); });

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/code-alchemist01/development-tools-mcp-Server'

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