publish-to-smithery.shā¢1.02 kB
#!/bin/bash
# Smithery publishing script for Brevo MCP
echo "š Publishing Brevo MCP to Smithery..."
# Build and test first
echo "šØ Building and testing..."
npm run build
npm test
# Check if smithery.yaml exists
if [ ! -f "smithery.yaml" ]; then
echo "ā smithery.yaml not found!"
exit 1
fi
echo "š Smithery configuration found"
cat smithery.yaml
# Publish to Smithery (this would be the actual Smithery publish command)
echo "š¤ Publishing to Smithery registry..."
echo "Note: Replace this with actual Smithery publish command when available"
# For now, just validate the structure
echo "ā
Brevo MCP is ready for Smithery!"
echo ""
echo "Package structure:"
echo " ā smithery.yaml configured"
echo " ā MCP server implemented"
echo " ā Build scripts ready"
echo " ā Executable permissions set"
echo ""
echo "To use with Smithery:"
echo " 1. Add this package to your Smithery configuration"
echo " 2. Configure API key and sender email"
echo " 3. Run through Smithery interface"