OMICall MCP Server
OMICall MCP 서버
OMICall / OMICRM API를 위한 MCP 서버입니다.
인증(Auth), 콜센터(Call Center), 티켓(Ticket), 다채널(Multi-Channel)(Zalo, Facebook, Telegram, LiveTalk), 상담원(Agent), 알림(Notifications), 웹훅(Webhook), 자동 통화(Auto Call), AI 등 9개 그룹에 걸친 80개 이상의 도구를 제공합니다.
빠른 시작
npx omicall-mcpRelated MCP server: GoHighLevel (GHL) MCP Server
플랫폼별 설정
전역(모든 프로젝트):
# 1. Add MCP server
claude mcp add OMICall-mcp --scope user \
-e OMICALL_USERNAME=admin@company.com \
-e OMICALL_PASSWORD=your-password \
-e OMICALL_DOMAIN=your-company \
-- npx omicall-mcp
# 2. Auto-approve all tools (no permission prompts)
claude permissions allow "mcp__OMICall-mcp__*"권한 유지 — ~/.claude/settings.json에 추가:
{
"permissions": {
"allow": [
"mcp__OMICall-mcp__*"
]
}
}프로젝트별 — .mcp.json에 추가:
{
"mcpServers": {
"omicall": {
"command": "npx",
"args": ["omicall-mcp"],
"env": {
"OMICALL_USERNAME": "admin@company.com",
"OMICALL_PASSWORD": "your-password",
"OMICALL_DOMAIN": "your-company"
}
}
}
}~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 %APPDATA%\Claude\claude_desktop_config.json(Windows)에 추가:
{
"mcpServers": {
"omicall": {
"command": "npx",
"args": ["omicall-mcp"],
"env": {
"OMICALL_USERNAME": "admin@company.com",
"OMICALL_PASSWORD": "your-password",
"OMICALL_DOMAIN": "your-company"
}
}
}
}설정(Settings) > MCP 서버(MCP Servers) > 추가(Add):
{
"omicall": {
"command": "npx",
"args": ["omicall-mcp"],
"env": {
"OMICALL_USERNAME": "admin@company.com",
"OMICALL_PASSWORD": "your-password",
"OMICALL_DOMAIN": "your-company"
}
}
}~/.codeium/windsurf/mcp_config.json에 추가:
{
"mcpServers": {
"omicall": {
"command": "npx",
"args": ["omicall-mcp"],
"env": {
"OMICALL_USERNAME": "admin@company.com",
"OMICALL_PASSWORD": "your-password",
"OMICALL_DOMAIN": "your-company"
}
}
}
}.vscode/mcp.json에 추가:
{
"servers": {
"omicall": {
"command": "npx",
"args": ["omicall-mcp"],
"env": {
"OMICALL_USERNAME": "admin@company.com",
"OMICALL_PASSWORD": "your-password",
"OMICALL_DOMAIN": "your-company"
}
}
}
}도구 (80개 이상)
인증 (Auth)
도구 | 설명 |
| 인증 (자동 pre_auth → 테넌트 선택 → 로그인) |
| 여러 테넌트가 있는 경우 테넌트 선택 |
| 로그아웃 및 토큰 삭제 |
| 계정 잔액 |
| 활성화된 모듈 및 사용 제한 |
콜센터 switchboard
도구 | 설명 |
| 필터를 사용한 통화 기록 검색 |
| 트랜잭션 ID별 통화 상세 정보 |
| 태그/메모 추가 |
| 통화 평가 |
| 발신 통화 시작 |
| PBX 내선 번호 |
| 핫라인 관리 |
| 링 그룹 |
| 그룹 멤버 |
| IVR 메뉴 |
| 통화 스크립트 |
| 오디오 파일 |
티켓 ticket
도구 | 설명 |
| 날짜 범위, 키워드로 검색 |
| CRUD |
| 상태 변경 |
| 메모 |
| 상호작용 기록 |
| 평가 |
| 카테고리, 통계, 전송 |
다채널 integrated
6개 채널: Zalo OA / Zalo 개인 / Facebook 채팅 / Facebook 게시물 / Telegram / LiveTalk
도구 | 설명 |
| 모든 채널 검색 (날짜/키워드/상담원 필터) |
| 대화 상세 정보, 채널 목록 |
| 채널별 메시지 (자동 채널별 엔드포인트) |
| Zalo OA를 통해 전송 |
| Zalo 개인 채팅으로 전송 |
| Facebook 메신저를 통해 전송 |
| Facebook 게시물/댓글에 답글 |
| Telegram 봇을 통해 전송 |
| LiveTalk 위젯으로 전송 |
| 작업 |
상담원 및 알림
도구 | 설명 |
| 직원 관리 |
| 알림 |
| 읽음 표시 |
웹훅 (Webhook)
도구 | 설명 |
| 웹훅 CRUD (HTTPS 강제) |
자동 통화 switchboard
도구 | 설명 |
| TTS/녹음/IVR을 사용한 자동 통화 |
| 내부 내선 번호로 자동 통화 |
AI ai
도구 | 설명 |
| 4가지 베트남어 음성을 지원하는 TTS |
| STT 웹훅 등록 |
서비스 패키지 게이트
각 도구는 계정에 필요한 모듈이 활성화되어 있는지 자동으로 확인합니다:
도구 그룹 | 필수 모듈 | 채널 하위 게이트 |
인증, 상담원, 웹훅, 알림 | 없음 | — |
콜센터, 자동 통화 |
| — |
티켓 |
| — |
다채널 |
| 채널별: |
AI |
| — |
모듈이 비활성화된 경우: "Module X is not enabled in your service package." 메시지가 반환됩니다.
기여
개발 설정 및 기여 가이드라인은 VIHATTeam에 문의하십시오.
라이선스
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
- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI agents to interact with Bitrix24 CRM for managing contacts, deals, tasks, and leads via a comprehensive set of tools. It supports advanced features like sales team monitoring, performance analytics, and automated CRM searching.
- AlicenseNot gradedqualityBmaintenanceProvides access to over 460 tools within the GoHighLevel CRM, allowing AI assistants to manage contacts, opportunities, messaging, and business workflows through natural language.2397ISC
- FlicenseNot gradedqualityDmaintenanceExposes the complete Zoho Desk API with over 700 endpoints across 130 categories using a context-efficient search-then-call pattern. It enables users to manage tickets, contacts, agents, and support operations through natural language interactions.2
- AlicenseAqualityBmaintenanceProvides 77 tools for AI agent communication, enabling agents to manage emails, phone messaging, domains, and webhooks. It allows AI models to interact with the Anima platform to automate workflows and administrative tasks across various communication channels.54353MIT
Related MCP Connectors
40+ Lightning-paid AI tools for agents: calls, SMS, fax, voice, translation. No signup, no keys.
Manage AI assistants, history, calls, campaigns, contacts, knowledge, messaging, and automations.
60+ Meta Ads tools for AI agents: audits, campaign management, audiences and CAPI tracking.
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/VIHATTeam/OMICALL-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server