We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oOo0oOo/lean-lsp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
release.sh•645 B
#!/bin/bash
# Usage: ./release.sh 0.0.1
# Check if version is provided
if [ -z "$1" ]; then
echo "Usage: $0 <new_version>"
exit 1
fi
new_version="$1"
echo "Release version will be $new_version"
read -p "Proceed? (y/N) " confirm
if [[ ! $confirm =~ ^[Yy]$ ]]; then
echo "Release cancelled."
exit 1
fi
# Update version in pyproject.toml
sed -i 's/^version = ".*"/version = "'$new_version'"/' pyproject.toml
# Commit the changes
git commit -am "Release $new_version"
# Tag the release
git tag -a v$new_version -m "lean-lsp-mcp $new_version"
# Push the changes and tags
git push
git push --tags
# Publish using uv
uv build
uv publish