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