We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PyneSys/claude_autoapprove_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
upload.sh•615 B
#!/bin/sh
# Ask if user wants to upload to PyPI
read -p "Do you want to upload to PyPI? (y/n): " upload
if [ "$upload" = "y" ]; then
if [ ! -d venv ]; then
echo "venv not found!"
exit 1
fi
source venv/bin/activate
for pkg in build twine; do
if ! python -c "import $pkg" &>/dev/null; then
echo "Missing Python package: $pkg – installing..."
pip install "$pkg"
fi
done
# Clear dist folder
rm -rf dist/* 2>/dev/null >/dev/null
# Build and upload
python -m build && \
python -m twine upload -r pynesys dist/*
fi