Skip to main content
Glama

Ndlovu Code Reviewer

by shaunie2fly
cli.ts827 B
export interface CliArgs { enableLogging: boolean; } /** * Parse command line arguments * @returns Parsed command line arguments */ export function parseArgs(): CliArgs { const args = process.argv.slice(2); return { enableLogging: args.includes('--enable-logging') || args.includes('-l'), }; } /** * Display help information */ export function showHelp(): void { console.log(` Ndlovu Code Reviewer MCP Server Usage: node dist/index.js [options] Options: -l, --enable-logging Enable file logging to ./logs/ directory -h, --help Show this help message Examples: node dist/index.js # Run without logging node dist/index.js --enable-logging # Run with logging enabled npm run start -- --enable-logging # Run via npm with logging `); }

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/shaunie2fly/ndlovu-code-reviewer'

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