We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MarcusJellinghaus/mcp-code-checker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
format_all.sh•201 B
#!/bin/bash
# Format all Python code using black and isort
echo "Running black..."
black src tests
echo "Running isort..."
isort --profile=black --float-to-top src tests
echo "Formatting complete!"