We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/llanterme/codebase-insights-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
release.sh•674 B
#!/bin/bash
set -e
# Get version type (patch, minor, major)
VERSION_TYPE=${1:-patch}
echo "🚀 Starting release process..."
# Update version
echo "📝 Updating version ($VERSION_TYPE)..."
poetry version $VERSION_TYPE
# Get new version
NEW_VERSION=$(poetry version --short)
echo "📦 New version: $NEW_VERSION"
# Build package
echo "🔨 Building package..."
poetry build
# Publish to PyPI
echo "📤 Publishing to PyPI..."
poetry publish
# Verify installation
echo "✅ Verifying installation..."
uvx --reinstall codebase-insights-mcp
echo "🎉 Release $NEW_VERSION completed successfully!"
echo "Users can now update with: uvx --reinstall codebase-insights-mcp"