com.infobip/mcp

平台与服务

by infobip

Infobip 的 MCP 服务器,支持全渠道通信与消息发送,覆盖 SMS、RCS、WhatsApp、Viber 等渠道。

什么是 com.infobip/mcp

Infobip 的 MCP 服务器,支持全渠道通信与消息发送,覆盖 SMS、RCS、WhatsApp、Viber 等渠道。

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, RCS, Viber, Voice, Mobile push
  • 📱 Set up and run 2FA flows
  • 📱 Use Telco network capabilities to improve authentication methods and enhance the security of online transactions
  • 👤 Store & activate your customer information
  • 👤 Manage Infobip user accounts
  • 👤 Orchestrate multi-tenant workflows with CPaaS X
  • 🔍 Explore Infobip documentation
  • 🔍 Let deep research models search and retrieve Infobip documentation as a data source

📋 Prerequisites


Table of Contents


🌐 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

ServerEndpointFeatures
SMShttps://mcp.infobip.com/smsSend and preview messages, schedule and reschedule, bulk sending, multilingual support (transliteration, character sets), delivery reports, message logs, URL tracking
WhatsApphttps://mcp.infobip.com/whatsappSend 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 Flowhttps://mcp.infobip.com/whatsapp-flowCreate and manage static/dynamic flows, generate flow structure, manage flow JSON, send interactive flows, preview flows, add and manage interactive components (forms, buttons, checkboxes)
Viberhttps://mcp.infobip.com/viberSend messages with rich media (images, videos, files, URLs), delivery reports, message logs, scheduling, SMS failover, URL tracking
RCShttps://mcp.infobip.com/rcsSend rich messages (multimedia, suggested replies, carousels, barcodes), delivery reports, message logs, capability check, SMS/MMS failover
Voicehttps://mcp.infobip.com/voiceSingle and multi-recipient voice calls, text-to-speech, pre-recorded audio, call management, conference calls, voice list management, delivery reports, call logs
Mobile App Messaginghttps://mcp.infobip.com/mobile-app-messagingSend push notifications, delivery reports, message logs, push statistics, push application management, inbox message management

📱 Authentication and verification

ServerEndpointFeatures
2FAhttps://mcp.infobip.com/2faApplication management, message templates (SMS/Email), send PIN (SMS/Voice/Email), resend and verify PIN, PIN verification status
CAMARAhttps://mcp.infobip.com/camaraNumber verification authorization, verify number, device location verification, SIM swap check, SIM swap date retrieval, KYC match

👤 Customer data and platform management

ServerEndpointFeatures
Peoplehttps://mcp.infobip.com/peopleManage Person profiles, add and manage company profiles, tags, custom attributes and lists, track and export events, audience segmentation
Account Managementhttps://mcp.infobip.com/account-managementAccount balance, free messages count, total balance, manage and update account details, audit logs
CPaaSX Applications and Entitieshttps://mcp.infobip.com/application-entityCreate and manage applications and entities, resource associations, inbound message configuration, list resources, coverage lookup, resource request submission and tracking

🔍 Developer resources

ServerEndpointFeatures
Infobip Documentationhttps://mcp.infobip.com/searchDocumentation search, API reference, use cases, product guides
Infobip Deep Researchhttps://mcp.infobip.com/deep-researchDeep 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 /sse to 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:

json
{
 "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.

json
{
  "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:

json
{
  "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

🚀 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 devrel@infobip.com.

📄 License

This document is licensed under the MIT License. See LICENSE for details.

Happy building with Infobip MCP! 🚀

常见问题

com.infobip/mcp 是什么?

Infobip 的 MCP 服务器,支持全渠道通信与消息发送,覆盖 SMS、RCS、WhatsApp、Viber 等渠道。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描111.1k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描111.1k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描9.6k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.0k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.3k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
34.8k

评论