Skip to main content
Glama
cli.js615 B
#!/usr/bin/env node /** * Code-MCP CLI Tool * Quick access to tools from command line */ const args = process.argv.slice(2); const command = args[0]; const help = ` Code-MCP CLI Usage: code-mcp <command> [options] Commands: health Check server health tools List available tools call <tool> Call a specific tool Examples: code-mcp health code-mcp tools code-mcp call plan_task --task="Build API" `; if (!command || command === "help" || command === "-h") { console.log(help); } else { console.log(`Command: ${command}`); console.log("CLI functionality coming soon!"); }

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/millsydotdev/Code-MCP'

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