Skip to main content
Glama
suggested_commands.md1.2 kB
# Suggested Commands ## Development Setup ```bash # Install dependencies (using uv - recommended) uv sync # Install with dev dependencies uv sync --all-extras # Or with pip pip install -e . pip install -e ".[dev]" ``` ## Running the Server ```bash # Using CLI entry point gradle-mcp # Using module directly python -m gradle_mcp.server # With custom project root GRADLE_PROJECT_ROOT=/path/to/project gradle-mcp ``` ## Testing ```bash # Run all tests pytest # Run tests with verbose output pytest -v # Run specific test file pytest tests/test_gradle.py pytest tests/test_security.py # Run implementation tests python test_implementation.py ``` ## Code Quality ```bash # Format code with Black black src/ # Lint code with Ruff ruff check src/ # Auto-fix linting issues ruff check src/ --fix # Type checking with mypy mypy src/ ``` ## System Utilities (macOS/Darwin) ```bash # Git operations git status git add -A git commit -m "message" git push # File operations ls -la find . -name "*.py" grep -r "pattern" src/ # Process management ps aux | grep python ``` ## Virtual Environment ```bash # Activate virtual environment source .venv/bin/activate # Deactivate deactivate ```

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/jermeyyy/gradle-mcp'

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