We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/samihalawa/whatsapp-go-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# WhatsApp Go MCP Deployment Script for Smithery.ai
echo "π Deploying WhatsApp Go MCP to Smithery.ai..."
# Build the Go binary
echo "π¦ Building Go binary..."
cd src
go build -o ../whatsapp .
cd ..
# Create deployment package
echo "π Creating deployment package..."
tar -czf whatsapp-go-mcp.tar.gz \
whatsapp \
smithery.yaml \
src/statics \
src/views \
readme.md \
docs/
# Deploy to Smithery
echo "βοΈ Deploying to Smithery.ai..."
smithery deploy whatsapp-go-mcp.tar.gz
echo "β
Deployment complete!"
echo ""
echo "π± To use in Claude Desktop, add to your config:"
echo ""
echo '{
"mcpServers": {
"whatsapp": {
"command": "npx",
"args": [
"-y",
"@smithery/cli@latest",
"run",
"@samihalawa/whatsapp-go-mcp"
]
}
}
}'