Skip to main content
Glama
index.ts585 B
#!/usr/bin/env node import { Application, parseArgs, showHelp, showVersion } from "./application.js"; // Process command-line arguments const args = process.argv.slice(2); if (args.includes("--help") || args.includes("-h")) { showHelp(); process.exit(0); } if (args.includes("--version") || args.includes("-v")) { showVersion(); process.exit(0); } // Parse configuration and start application const config = parseArgs(args); const app = new Application(config); app.start().catch((error) => { console.error("Failed to start application:", 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/samuraikun/aws-s3-mcp'

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