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
package config
import (
"go.mau.fi/whatsmeow/proto/waCompanionReg"
)
var (
AppVersion = "v7.5.0"
AppPort = "3000"
AppDebug = false
AppOs = "AldinoKemal"
AppPlatform = waCompanionReg.DeviceProps_PlatformType(1)
AppBasicAuthCredential []string
AppBasePath = ""
McpPort = "8080"
McpHost = "localhost"
PathQrCode = "statics/qrcode"
PathSendItems = "statics/senditems"
PathMedia = "statics/media"
PathStorages = "storages"
DBURI = "file:storages/whatsapp.db?_foreign_keys=on"
DBKeysURI = ""
WhatsappAutoReplyMessage string
WhatsappAutoMarkRead = false // Auto-mark incoming messages as read
WhatsappWebhook []string
WhatsappWebhookSecret = "secret"
WhatsappLogLevel = "ERROR"
WhatsappSettingMaxImageSize int64 = 20000000 // 20MB
WhatsappSettingMaxFileSize int64 = 50000000 // 50MB
WhatsappSettingMaxVideoSize int64 = 100000000 // 100MB
WhatsappSettingMaxDownloadSize int64 = 500000000 // 500MB
WhatsappTypeUser = "@s.whatsapp.net"
WhatsappTypeGroup = "@g.us"
WhatsappAccountValidation = true
ChatStorageURI = "file:storages/chatstorage.db"
ChatStorageEnableForeignKeys = true
ChatStorageEnableWAL = true
)