[{'Text': 'Edited point-topic-mcp/publish_to_pypi.sh:\n\n```diff\n@@ -49,10 +49,11 @@\n \n echo "✅ Successfully published to PyPI!"\n echo ""\n-echo "⏳ Waiting 10s for PyPI to propagate..."\n-sleep 10\n-echo "🔄 Reinstalling local tool to latest version..."\n-uv tool install --reinstall point-topic-mcp\n+echo "🔄 Reinstalling local tool to latest version (retrying until PyPI propagates)..."\n+while ! uv tool install --reinstall point-topic-mcp 2>/dev/null; do\n+    echo "  PyPI not ready yet, retrying in 2s..."\n+    sleep 2\n+done\n echo ""\n echo "Users can now install with:"\n echo "  pip install point-topic-mcp"\n\n```'}]