Loading...

This MCP server enables AI models to interact with the YCloud WhatsApp API, automating tasks like sending messages and managing contacts via API calls.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server enables AI models to interact with the YCloud WhatsApp API, automating tasks like sending messages and managing contacts via API calls.
This server provides a convenient way to interact with the YCloud WhatsApp API. It's relatively safe for read-only operations, but caution is advised when using write operations due to the lack of explicit sandboxing. Securely manage your API key to prevent unauthorized access.
Performance will be limited by the YCloud API's rate limits and response times. Consider implementing caching to improve performance for frequently accessed data.
Cost is primarily driven by the number of API calls made to the YCloud API. Monitor API usage to avoid unexpected charges.
npm install
npm{
"mcpServers": {
"ycloud-whatsapp": {
"command": "node",
"args": ["path/to/ycloud-whatsapp-mcp-server/build/index.js"],
"env": {
"API_BASE_URL": "https://api.ycloud.com/v2",
"API_HEADERS": "X-API-Key:your-api-key-here"
}
}
}
}API_BASE_URLsendWhatsAppMessageSends a WhatsApp message to a specified recipient using the YCloud API.
Sends messages, which can incur costs and potentially be used for spam if not controlled.
getWhatsAppContactRetrieves information about a specific WhatsApp contact from the YCloud API.
Read-only operation, no side effects.
listWhatsAppContactsLists all WhatsApp contacts associated with the YCloud account.
Read-only operation, no side effects.
API Key
This server provides a convenient way to interact with the YCloud WhatsApp API. It's relatively safe for read-only operations, but caution is advised when using write operations due to the lack of explicit sandboxing. Securely manage your API key to prevent unauthorized access.
Autonomy depends on the specific tools and permissions granted via the API key. Exercise caution when enabling automated write operations.
Production Tip
Implement robust logging and monitoring to track API usage and identify potential issues.
Log in to the YCloud console, navigate to the developer page, and find your API key there.
Immediately revoke the compromised key and generate a new one in the YCloud console.
Set the `API_BASE_URL` environment variable to the desired URL.
Yes, as long as the AI model supports the Model Context Protocol (MCP).
Check the server logs, use the MCP Inspector, and examine the Claude desktop application logs.
Refer to the YCloud API documentation for information on rate limits.
The documentation doesn't mention webhooks, so likely not directly. You may need to implement separate webhook handling.