infobip-mcp
infobip-mcp v1.0.0
Infobip API 用の統合 Model Context Protocol (MCP) サーバー。 SMS、WhatsApp、Email、2FA/OTP、アカウント管理を単一の高性能なローカル MCP サーバーに統合します。
機能 (5つの統合ツール)
infobip_sms: 単一/一括 SMS の送信、配信レポート (DLR) の取得、メッセージログの表示infobip_whatsapp: テキスト、承認済み Meta テンプレート、メディア (画像、ドキュメント、動画、音声) の送信infobip_email: トランザクションメール (HTML/テキスト) の送信、配信レポートとログの追跡infobip_2fa: 2FA OTP コードの生成と送信、PIN コードの検証、PIN の再送信、2FA アプリケーションの管理infobip_account: リアルタイムのアカウント残高と通貨の確認
Related MCP server: seven-mcp
クイックスタート
1. 設定 (API キー)
Infobip API キーを ~/.secrets/infobip-key.txt に保存するか、環境変数を設定してください:
export INFOBIP_API_KEY="your-infobip-api-key"
export INFOBIP_BASE_URL="https://xxxxx.api.infobip.com" # Optional, defaults to https://api.infobip.com2. MCP クライアントに追加 (Claude Desktop、OpenCode、Cursor、Windsurf)
オプション 1: uvx を使用 (即時 - 手動インストール不要)
{
"mcpServers": {
"infobip": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Steph-ux/infobip-mcp.git", "infobip-mcp"]
}
}
}オプション 2: pip install を使用
pip install git+https://github.com/Steph-ux/infobip-mcp.git次に MCP 設定で:
{
"mcpServers": {
"infobip": {
"command": "infobip-mcp"
}
}
}オプション 3: ローカルクローン
{
"mcpServers": {
"infobip": {
"command": "python",
"args": ["D:\\Steph\\script\\infobip-mcp\\server.py"]
}
}
}使用例
1. SMS を送信
infobip_sms(
action='send',
to='+33612345678',
text='Your verification code is 482910',
from_sender='AuthService'
)2. WhatsApp テンプレートを送信
infobip_whatsapp(
action='send_template',
from_sender='447860099299',
to='33612345678',
template_name='order_confirmation',
language='en',
placeholders=['John', 'ORDER-9812']
)3. トランザクションメールを送信
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. 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. 残高を確認
infobip_account(action='balance')テスト
pytest testsライセンス
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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
- AlicenseBqualityCmaintenanceMCP server for the seven.io API, enabling SMS, voice, RCS messaging, and account management through natural language.44201MIT

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.50The Unlicense
Related MCP Connectors
Hosted MCP server for the Wavix telecom platform: SMS, voice, 2FA, SIP, numbers, 10DLC, CDRs.
MCP Server for agents to onboard, pay, and provision services autonomously with InFlow
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Steph-ux/infobip-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server