Infobip MCP servers
Enables seamless integration with communication platform that allows you to reach your customers globally across any channel.
Infobip MCP Servers
Infobip MCP Servers let you build AI agents to interact with the Infobip platform through the Model Context Protocol (MCP). Connect to Infobip and enable your agents to perform actions, such as sending messages over channels like SMS, WhatsApp, or Viber, or managing customer data in a controlled, production-grade environment.
No more complex integrations or digging through endless documentation. Just plug in and let your AI do the talking.
🛠️ Features
- ✉️ Send messages using channels like SMS, WhatsApp, Viber, or RCS (more coming soon)
- 📱 Set up and run 2FA flows
- 🧑💼 Store & activate your customer information
- 👤 Manage Infobip user accounts
🌐 Available Remote MCP Servers
Infobip remote MCP servers support streamable HTTP transport. Below is a list of available remote MCP servers.
Base URL: https://mcp.infobip.com
Messaging channels
| Server | Endpoint | Features |
|---|---|---|
| SMS | https://mcp.infobip.com/sms | Send and preview messages, schedule and reschedule, bulk sending, multilingual support (transliteration, character sets), delivery reports, message logs, URL tracking |
https://mcp.infobip.com/whatsapp | Send template messages, send text/media (text, document, image, audio, video, sticker), send location/contact messages, template management (create, edit, delete, retrieve), delivery reports, message logs, SMS failover | |
| WhatsApp Flow | https://mcp.infobip.com/whatsapp-flow | Create and manage static/dynamic flows, generate flow structure, manage flow JSON, send interactive flows, preview flows, add and manage interactive components (forms, buttons, checkboxes) |
| Viber | https://mcp.infobip.com/viber | Send messages with rich media (images, videos, files, URLs), delivery reports, message logs, scheduling, SMS failover, URL tracking |
| RCS | https://mcp.infobip.com/rcs | Send rich messages (multimedia, suggested replies, carousels, barcodes), delivery reports, message logs, capability check, SMS/MMS failover |
| Voice | https://mcp.infobip.com/voice | Single and multi-recipient voice calls, text-to-speech, pre-recorded audio, call management, conference calls, voice list management, delivery reports, call logs |
| Mobile App Messaging | https://mcp.infobip.com/mobile-app-messaging | Send push notifications, delivery reports, message logs, push statistics, push application management, inbox message management |
Authentication and verification
| Server | Endpoint | Features |
|---|---|---|
| 2FA | https://mcp.infobip.com/2fa | Application management, message templates (SMS/Email), send PIN (SMS/Voice/Email), resend and verify PIN, PIN verification status |
| CAMARA | https://mcp.infobip.com/camara | Number verification authorization, verify number, device location verification, SIM swap check, SIM swap date retrieval, KYC match |
Customer data and platform management
| Server | Endpoint | Features |
|---|---|---|
| People | https://mcp.infobip.com/people | Manage Person profiles, add and manage company profiles, tags, custom attributes and lists, track and export events, audience segmentation |
| Account Management | https://mcp.infobip.com/account-management | Account balance, free messages count, total balance, manage and update account details, audit logs |
| CPaaSX Applications and Entities | https://mcp.infobip.com/application-entity | Create and manage applications and entities, resource associations, inbound message configuration, list resources, coverage lookup, resource request submission and tracking |
Developer resources
| Server | Endpoint | Features |
|---|---|---|
| Infobip Documentation | https://mcp.infobip.com/search | Documentation search, API reference, use cases, product guides |
| Infobip Deep Research | https://mcp.infobip.com/deep-research | Deep search across API documentation, fetch detailed content |
For more details on supported endpoints, see the Infobip MCP documentation.
Examples of using Infobip MCP servers with different frameworks can be found in the examples directory.
If you need SSE transport support, append
/sseto the endpoint URL (e.g.,https://mcp.infobip.com/sms/sse).
Using an HTTP Transport Option
Use the HTTP transport method to connect directly to an Infobip MCP Server:
{
"mcpServers": {
"ib-sms": {
"type": "http",
"url": "https://mcp.infobip.com/sms",
"headers": {
"Authorization": "App ${INFOBIP_API_KEY}"
}
}
}
}
Using a STDIO Transport Bridge
If your agent does not support remote MCP servers, you can use a bridge like mcp-remote.
{
"mcpServers": {
"infobip-sms": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.infobip.com/sms",
"--header",
"Authorization: App ${INFOBIP_API_KEY}"
],
"env": {
"INFOBIP_API_KEY": "<Your Infobip API Key here>"
}
}
}
}
🔐 Authentication and Authorization
To use Infobip MCP servers, you need an Infobip account. If you don't have one, create an Infobip account with a free trial.
Using an API Key
If your MCP client supports adding additional headers through configuration or environment variables, you can use your Infobip API key and provide it in the Authorization header using the following format: App ${INFOBIP_API_KEY}.
See the mcp-remote example above for setup details.
Using OAuth 2.1
Infobip MCP servers support OAuth 2.1 authentication. To use OAuth 2.1, your MCP client must support OAuth 2.1 authentication and dynamic OAuth authorization server metadata discovery. To start the OAuth flow, configure your MCP client to connect to the Infobip MCP server without providing authentication credentials. Your MCP client should initiate the OAuth flow automatically, redirecting you to the Infobip OAuth server for authentication.
Discovering Supported Scopes
Some MCP clients may not support automatic scopes_supported discovery.
In this case, you must manually configure the scopes in your MCP client configuration.
The scopes for a particular MCP server can be found in the authorization server metadata at {server-url}/.well-known/oauth-authorization-server.
For example, for the Infobip SMS MCP server, the scopes are available at: https://mcp.infobip.com/sms/.well-known/oauth-authorization-server
Example configuration for Claude Desktop:
{
"mcpServers": {
"infobip-sms": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.infobip.com/sms",
"--debug",
"--static-oauth-client-metadata",
"{\"scope\":\"sms:manage profile\"}"
]
}
}
}
Agent Permission and Access Control
Effective AI agent governance requires implementing granular permission controls, especially for high-impact operations like message sending. Unrestricted access privileges pose substantial security vulnerabilities and operational hazards that can compromise system integrity and user trust.
Make sure to follow official MCP implementation guidelines.
🛠️ Troubleshooting
Authentication and Authorization Issues
- Ensure you have a valid Infobip account and an API key with a correct scope.
- If using OAuth 2.1, verify your MCP client supports dynamic metadata discovery.
- Confirm that required scopes are correctly configured in your MCP client.
Message Delivery Issues
- Make sure the recipient phone number is valid and reachable.
Other Issues
- For HTTP status codes and error details, see the troubleshooting guide.
🚀 Infobip MCP Servers in Use
Learn how to build, configure, and integrate various Infobip MCP servers with our hands-on MCP tutorials.
🤝 Contributing
If you have suggestions for improvements, please contact [email protected].
📄 License
This document is licensed under the MIT License. See LICENSE for details.
Happy building with Infobip MCP! 🚀
相关服务器
MCP Feedback Collector
An MCP server for collecting interactive user feedback, including text and images, through a graphical interface.
CData Microsoft Teams MCP Server
A read-only MCP server for querying live Microsoft Teams data, powered by CData.
BGG MCP
BGG MCP enables AI tools to interact with the BoardGameGeek API.
MailerLite MCP server
Turn AI tools into your email marketing assistant.
interactive-mcp
Enables interactive LLM workflows by adding local user prompts and chat capabilities directly into the MCP loop.
Resend Email
Send emails directly from your editor using the Resend API.
MCP ChatGPT Proxy
A production-ready MCP server for ChatGPT and o3-pro, featuring caching, cost tracking, and rate limiting.
MCP Telegram
Control Telegram using LLMs through the Model Context Protocol (MCP).
CData Slack MCP Server
A read-only MCP server for Slack by CData, enabling LLMs to query live Slack data. Requires the CData JDBC Driver for Slack.
Slack Webhook
Post messages to Slack channels using incoming webhooks or bot tokens.