We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mumez/pharo-nc-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
format.shโข614 B
#!/bin/bash
# Format all code and documentation files
set -e
echo "๐ง Formatting Python code with ruff..."
uv run ruff format pharo_nc_mcp_server/ tests/
echo "๐ Checking if mdformat is available..."
if uv run mdformat --version >/dev/null 2>&1; then
echo "Formatting markdown files..."
uv run mdformat README.md scripts/README.md 2>/dev/null || echo "Warning: Some markdown files could not be formatted"
else
echo "mdformat not available, skipping markdown formatting"
fi
echo "๐ Running linting checks..."
uv run ruff check pharo_nc_mcp_server/ tests/
echo "โ All formatting complete!"