We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LerianStudio/lerian-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
demo-makefile.shโข879 B
#!/bin/bash
# Demo script showing Makefile capabilities
# Run this to see the full development workflow
set -e
echo "๐ฏ Midaz MCP Server - Makefile Demo"
echo "===================================="
echo ""
echo "๐ Step 1: Show available commands"
echo "make help"
echo ""
make help
echo ""
echo "๐ Step 2: Setup configuration files"
echo "make config"
echo ""
make config
echo ""
echo "๐จ Step 3: Build the project"
echo "make build"
echo ""
make build
echo ""
echo "๐ Step 4: Test logging functionality"
echo "make test-logging"
echo ""
make test-logging
echo ""
echo "๐งช Step 5: Run linting"
echo "make lint"
echo ""
make lint
echo ""
echo "โ Demo completed successfully!"
echo ""
echo "๐ To start the server:"
echo " make dev # Development mode"
echo " make start # Production mode"
echo ""
echo "๐ For full documentation: make help"