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"