infobip-mcp
Allows sending WhatsApp messages, including text, approved templates, and media (images, documents, videos, audio) using the Infobip WhatsApp API.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@infobip-mcpWhat's my Infobip account balance?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
infobip-mcp v1.0.0
Unified Model Context Protocol (MCP) server for Infobip APIs. Consolidates SMS, WhatsApp, Email, 2FA/OTP, and Account management into a single, high-performance local MCP server.
Features (5 Unified Tools)
infobip_sms: Send single/bulk SMS, fetch delivery reports (DLR), and view message logsinfobip_whatsapp: Send text, approved Meta templates, and media (images, documents, videos, audio)infobip_email: Send transactional emails (HTML/text), track delivery reports and logsinfobip_2fa: Generate and dispatch 2FA OTP codes, verify PIN codes, resend PINs, manage 2FA applicationsinfobip_account: Check real-time account balance and currency
Related MCP server: seven-mcp
Quick Start
1. Configuration (API Key)
Store your Infobip API key in ~/.secrets/infobip-key.txt or set the environment variable:
export INFOBIP_API_KEY="your-infobip-api-key"
export INFOBIP_BASE_URL="https://xxxxx.api.infobip.com" # Optional, defaults to https://api.infobip.com2. Add to MCP Client (Claude Desktop, OpenCode, Cursor, Windsurf)
Option 1: Via uvx (Instant - No manual install)
{
"mcpServers": {
"infobip": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Steph-ux/infobip-mcp.git", "infobip-mcp"]
}
}
}Option 2: Via pip install
pip install git+https://github.com/Steph-ux/infobip-mcp.gitThen in your MCP config:
{
"mcpServers": {
"infobip": {
"command": "infobip-mcp"
}
}
}Option 3: Local Clone
{
"mcpServers": {
"infobip": {
"command": "python",
"args": ["D:\\Steph\\script\\infobip-mcp\\server.py"]
}
}
}Usage Examples
1. Send SMS
infobip_sms(
action='send',
to='+33612345678',
text='Your verification code is 482910',
from_sender='AuthService'
)2. Send WhatsApp Template
infobip_whatsapp(
action='send_template',
from_sender='447860099299',
to='33612345678',
template_name='order_confirmation',
language='en',
placeholders=['John', 'ORDER-9812']
)3. Send Transactional Email
infobip_email(
action='send',
from_email='notifications@yourdomain.com',
to='customer@example.com',
subject='Invoice #4912',
html='<h1>Thank you for your purchase</h1><p>Your order is confirmed.</p>'
)4. Send and Verify 2FA PIN
# Step 1: Send PIN
infobip_2fa(
action='send_pin',
application_id='APP_ID_123',
message_id='MSG_ID_456',
to='+33612345678'
)
# Step 2: Verify PIN
infobip_2fa(
action='verify_pin',
pin_id='PIN_ID_789',
pin='4829'
)5. Check Balance
infobip_account(action='balance')Testing
pytest testsLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Unified messaging MCP server: WhatsApp, Instagram, Telegram, SMS, Messenger & email support inbox
WhatsApp (Web + Business API), SMS, contacts, and call records via 2Chat's MCP server.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol (MCP) server for Selise Blocks Cloud integration
Related MCP Servers
- FlicenseAqualityCmaintenanceLocal-first MCP server for agents that need to work across multiple Gmail and Microsoft 365 accounts without cloud token storage.6-
- AlicenseBqualityDmaintenanceMCP server for the seven.io API, enabling SMS, voice, RCS messaging, and account management through natural language.442 npm1MIT

lingtai-whatsappofficial
AlicenseNot gradedqualityFmaintenanceMCP server for interacting with the official Meta WhatsApp Business Platform/Cloud API, enabling sending messages, managing contacts, templates, and handling webhook callbacks.Apache 2.0- AlicenseNot gradedqualityAmaintenanceMCP server for a local-first messaging workspace that integrates Google Messages, WhatsApp, and Signal. It enables reading, sending, searching messages, and managing conversations through MCP tools.55-