Skip to main content
Glama
index.ts755 B
#!/usr/bin/env node /** * GitHub MCP Server Entry Point * =========================== * * This is the main entry point file for the GitHub MCP server. * It re-exports the application entry module. */ // Import and re-export the application entry module export * from './application.entry.js'; // In ES modules, we can use import.meta.url to determine if this file is being run directly const isMainModule = import.meta.url.endsWith(process.argv[1]); // If this file is executed directly, run the application if (isMainModule) { // This file was executed directly, so we'll import and run the server import('./application.entry.js').catch(error => { console.error('Failed to start GitHub MCP 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/cyanheads/github-mcp-server'

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