
Infobip
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, pr
README
Infobip MCP Servers
<img src="https://cdn-web.infobip.com/uploads/2025/05/infobip-logo-horizontal-orange.png" alt="Infobip Logo" height="48" style="display:inline;vertical-align:middle;">
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 |
Messages API | https://mcp.infobip.com/messages-api |
2FA | https://mcp.infobip.com/2fa |
People | https://mcp.infobip.com/people |
Account Management | https://mcp.infobip.com/account-management |
For more details on supported endpoints, see the Infobip MCP documentation.
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\"}"
]
}
}
}
🛠️ 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! 🚀
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.