We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jojodiaz/mcp-test'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
clean.sh•368 B
#!/bin/bash
# Check if venv exists
if [ -d ".venv" ]; then
source .venv/bin/activate
if [ -f "requirements.txt" ]; then
echo "Uninstalling dependencies..."
pip uninstall -r requirements.txt -y
echo "Dependencies uninstalled."
else
echo "requirements.txt not found."
fi
else
echo "Virtual environment not found."
fi