Skip to main content
Glama
import { AzureMCPServer } from './AzureServer'; import LoggerService from './LoggerService'; async function startServer() { try { LoggerService.info("Starting Azure MCP Server..."); const server = new AzureMCPServer(); await server.start(); LoggerService.info("Server started successfully!"); // Handle graceful shutdown process.on('SIGTERM', async () => { LoggerService.info("Received SIGTERM signal. Shutting down..."); process.exit(0); }); process.on('SIGINT', async () => { LoggerService.info("Received SIGINT signal. Shutting down..."); process.exit(0); }); } catch (error) { LoggerService.error(`Failed to start server: ${error}`); process.exit(1); } } // Start the server startServer();

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/kalivaraprasad-gonapa/azure-mcp'

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