We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/samihalawa/brevo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/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"