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"