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
| Server | Endpoint |
|---|---|
| SMS | https://mcp.infobip.com/sms |
https://mcp.infobip.com/whatsapp | |
| Viber | https://mcp.infobip.com/viber |
| RCS | https://mcp.infobip.com/rcs |
| 2FA | https://mcp.infobip.com/2fa |
| People | https://mcp.infobip.com/people |
| Account Management | https://mcp.infobip.com/account-management |
| CPaaSX Applications and Entities | https://mcp.infobip.com/application-entity |
| Infobip Documentation | https://mcp.infobip.com/search |
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 a STDIO Transport Bridge
If your agent does not support remote MCP servers, you can use a bridge like mcp-remote.
Example configuration for Claude Desktop:
{
"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\"}"
]
}
}
}
OAuth flows won't be triggered when using SSE transport endpoints. Use streamable HTTP transport endpoints for full OAuth support.
π οΈ 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.
π€ Contributing
If you have suggestions for improvements, please contact devrel@infobip.com.
π License
This document is licensed under the MIT License. See LICENSE for details.
Happy building with Infobip MCP! π
Related Servers
MCP Notification Server
Sends periodic notifications every 10 seconds.
Slack MCP Server
A server for integrating with Slack, enabling communication and automation within your workspace.
Telephony MCP Server
Make voice calls and send SMS messages using the Vonage API.
JustCall MCP Server
The JustCall Model Context Protocol (MCP) Server lets Large Language Models (LLMs) and AI agents make real-world voice calls and send SMS directly through JustCallβs APIs β securely, contextually, and programmatically.
Feishu/Lark OpenAPI MCP
Connects AI agents to the Feishu/Lark platform via its OpenAPI to automate tasks like document processing, conversation management, and calendar scheduling.
Just Facebook
Automate and manage interactions on a Facebook Page using the Facebook Graph API.
Smartlead
Manage Smartlead campaigns, including creation, updates, and sequence management, using the Smartlead API.
AgentRPC
Connect to any function, any language, across network boundaries using AgentRPC.
Gmail
Search and delete emails in your Gmail account.
WeChat
A server for interacting with WeChat, a popular messaging and social media app.