We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jdanas/unsloth-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.sh•573 B
#!/bin/bash
echo "Setting up Unsloth MCP Server..."
# Check if Python is installed
if ! command -v python3 &> /dev/null; then
echo "Python 3 is required but not installed."
exit 1
fi
# Check if pip is installed
if ! command -v pip &> /dev/null; then
echo "pip is required but not installed."
exit 1
fi
# Install dependencies
echo "Installing dependencies..."
pip install -r requirements.txt
echo "Setup complete!"
echo ""
echo "To run the server:"
echo " python unsloth_mcp_server.py"
echo ""
echo "To test the server:"
echo " python test_client.py"