We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mayank-ketkar-sf/ClaudeJupy'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Build script for ml-jupyter-mcp package
set -e # Exit on error
echo "🧹 Cleaning previous builds..."
rm -rf ../dist ../build ../src/*.egg-info
echo "📦 Building package..."
cd ..
python -m build
echo "✅ Build complete!"
echo "📁 Built packages:"
ls -la dist/
echo ""
echo "📊 Package contents:"
python -m zipfile -l dist/*.whl | head -20
echo ""
echo "✨ Ready to publish! Run ./deploy/publish.sh to upload to PyPI"