UNPKG

stellar-mcp-cli

Version:

CLI tool that transforms any Soroban Smart Contract into an AI-ready Model Context Protocol (MCP) server

17 lines (15 loc) • 674 B
#!/usr/bin/env node const args = process.argv.slice(2); const command = `cargo run -- ${args.join(' ')}`; console.log('\n🌟 Stellar MCP CLI - Development Instructions 🌟\n'); console.log('Please follow these steps to run the command:\n'); console.log('1. Clone the repository:'); console.log(' git clone https://github.com/JoseCToscano/stellar-cli\n'); console.log('2. Navigate to the cloned directory:'); console.log(' cd stellar-cli\n'); console.log('3. Run the following cargo command:\n'); console.log('```'); console.log(command); console.log('```\n'); console.log('For more information, visit:'); console.log('https://github.com/JoseCToscano/stellar-cli\n');