Skip to main content
Glama
index.ts649 B
/** * Main entry point for the MCP Git-ClickUp Orchestrator server */ import { startServer } from "./server.js"; import { error } from "./utils/logger.js"; /** * Main function to start the server */ async function main(): Promise<void> { try { await startServer(); } catch (err) { const errorMessage = err instanceof Error ? err.message : String(err); error(`Failed to start MCP server: ${errorMessage}`); process.exit(1); } } // Start the server main().catch((err) => { const errorMessage = err instanceof Error ? err.message : String(err); error(`Unhandled error in main: ${errorMessage}`); 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/tangbodie/clickup-mcp'

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