Skip to main content
Glama
check.sh1.13 kB
#!/bin/bash # Elrond MCP - Development Quality Check Script # This script runs all the quality checks needed before committing code set -e # Exit on any error echo "🔍 Elrond MCP - Running Quality Checks" echo "======================================" # Check if uv is available if ! command -v uv &> /dev/null; then echo "❌ Error: 'uv' is not installed or not in PATH" echo "Please install uv: https://docs.astral.sh/uv/" exit 1 fi echo "" echo "📦 Syncing dependencies..." uv sync --dev --all-extras echo "" echo "🔧 Running Ruff linter (with auto-fix)..." uv run ruff check . --fix echo "" echo "✨ Running Ruff formatter..." uv run ruff format . echo "" echo "🧪 Running test suite..." uv run pytest -v echo "" echo "🔍 Final lint check (no fixes)..." uv run ruff check . echo "" echo "✅ All quality checks passed!" echo "" echo "📋 Pre-commit checklist completed:" echo " ✓ Dependencies synced" echo " ✓ Code linted and fixed" echo " ✓ Code formatted" echo " ✓ All tests passing" echo " ✓ Final lint check clean" echo "" echo "🚀 Your code is ready for commit!"

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/dogonthehorizon/elrond-mcp'

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