We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/artemnovichkov/shortcuts-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env bash
#MISE description="Release a new version of the CLI"
#USAGE arg "<product>"
#USAGE arg "<version>"
set -eo pipefail
echo "Releasing $usage_version"
swift build -c release --triple arm64-apple-macosx
temp_dir=$(mktemp -d)
zip_path="$temp_dir/$usage_product-macos.zip"
/usr/bin/ditto -c -k --keepParent .build/release/"$usage_product" "$zip_path"
trap 'rm -rf "$temp_dir"' EXIT
gh release create "$usage_version" --title "$usage_version" --notes "Release $usage_version" "$zip_path"
echo "Release $usage_version created and uploaded successfully"