viber-mcp
The viber-mcp server enables AI assistants to fully interact with the Viber Bot API through the Model Context Protocol, providing tools to send messages, manage media, handle webhooks, and query user/account data.
Messaging
Send text messages to individual users (up to 7,000 characters)
Send images with optional captions
Send videos (MP4/H.264, up to 26MB, 180s) with optional thumbnails
Send file attachments (up to 50MB) with custom file names
Send clickable URLs (up to 2,000 characters)
Send GPS location coordinates (latitude/longitude)
Send contact cards with name and phone number
Broadcast text messages to up to 300 Viber users simultaneously
Account & User Management
Retrieve bot account info including subscriber count and member list
Fetch user profile details (rate-limited to 2 calls per 12 hours per user)
Check online status of up to 100 Viber users at once
Webhook Management
Register a webhook URL to receive Viber events (delivered, seen, failed, subscribed, unsubscribed, conversation_started, message)
Remove/disable the currently registered webhook
General
All tools support optional sender name and avatar overrides per message
Input validation before API calls with human-readable error responses for graceful AI handling
Provides tools to interact with the Viber Bot API for sending messages, media, files, broadcasting, managing webhooks, and querying user data.
The first MCP server for Viber. Connect any MCP-compatible client -- Claude Desktop, Claude Code, Cursor, Windsurf, and others -- to the Viber Bot REST API and control your Viber bot through natural language.
Viber has over 1 billion registered users, particularly strong in Ukraine, Eastern Europe, Greece, and Southeast Asia. This server gives AI assistants full access to the bot API: send messages, media, files, broadcast to groups, manage webhooks, and query user data.
How it works
┌──────────────────────┐ stdio ┌──────────────────────┐
│ │ ◄───────────────────► │ │
│ MCP Client │ JSON-RPC over │ viber-mcp │
│ │ stdin/stdout │ │
│ - Claude Desktop │ │ 13 tools │
│ - Claude Code │ │ Zod validation │──── HTTPS ───► Viber API
│ - Cursor │ │ Error handling │ chatapi.viber.com
│ - Any MCP client │ │ Typed responses │
│ │ │ │
└──────────────────────┘ └──────────────────────┘Related MCP server: MCP from Scratch Server
Quick start
Try it instantly -- no install required:
VIBER_AUTH_TOKEN=your-token npx @serhii.zghama/viber-mcpOr install globally:
npm install -g @serhii.zghama/viber-mcpSetup
Claude Desktop
Add to your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"viber": {
"command": "npx",
"args": ["-y", "@serhii.zghama/viber-mcp"],
"env": {
"VIBER_AUTH_TOKEN": "your-bot-token-here",
"VIBER_SENDER_NAME": "MyBot"
}
}
}
}Windows note: Replace
"command": "npx"with"command": "cmd"and"args"with["/c", "npx", "-y", "@serhii.zghama/viber-mcp"].
Restart Claude Desktop. The Viber tools will appear in the tools menu.
Claude Code
claude mcp add viber-mcp -e VIBER_AUTH_TOKEN=your-bot-token-here -- npx -y @serhii.zghama/viber-mcpCursor
Open Settings > MCP Servers, click + Add, and paste:
{
"viber": {
"command": "npx",
"args": ["-y", "@serhii.zghama/viber-mcp"],
"env": {
"VIBER_AUTH_TOKEN": "your-bot-token-here"
}
}
}VS Code (Copilot)
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"viber": {
"command": "npx",
"args": ["-y", "@serhii.zghama/viber-mcp"],
"env": {
"VIBER_AUTH_TOKEN": "your-bot-token-here"
}
}
}
}Tools
13 tools covering the full Viber Bot API surface:
Messaging
Tool | Description | Key parameters |
| Send a text message |
|
| Send an image with optional caption |
|
| Send a video |
|
| Send a file attachment |
|
| Send a clickable link |
|
| Send GPS coordinates |
|
| Send a contact card |
|
| Broadcast to up to 300 users |
|
Account & Users
Tool | Description | Key parameters |
| Get bot profile and subscriber count | none |
| Fetch user profile (rate-limited: 2/12h per user) |
|
| Check online status of up to 100 users |
|
Webhooks
Tool | Description | Key parameters |
| Register a webhook URL |
|
| Disable the current webhook | none |
All tools validate inputs with Zod schemas before calling the Viber API. On errors, tools return human-readable messages with isError: true so the AI can decide how to proceed.
Full schema details and examples in docs/API_REFERENCE.md.
Configuration
Environment variables, read once at startup:
Variable | Required | Default | Description |
| yes | -- | Bot auth token from the Viber Admin Panel |
| no |
| Default sender display name (max 28 chars) |
| no | -- | Default sender avatar URL |
| no |
| API base URL override |
| no |
| Per-request timeout in milliseconds |
Getting a Viber bot token
Open the Viber Admin Panel
Create a new bot account (or select an existing one)
Copy the token from the bot's settings page
Set it as
VIBER_AUTH_TOKENin your MCP client config
Note: Since February 2024, new Viber bot accounts may require commercial onboarding through Viber partners. Existing bot tokens continue to work.
Development
git clone https://github.com/serhiizghama/viber-mcp.git
cd viber-mcp
pnpm installCommand | Description |
| Build with tsup (ESM, Node 20+) |
| Build with file watching |
| Run TypeScript strict checks |
| Run vitest (36 tests) |
Project structure
src/
index.ts -- Entrypoint: config -> client -> server -> stdio
config.ts -- Environment variable parsing
errors.ts -- ViberApiError class
server.ts -- MCP server builder with tool registration
viber/
client.ts -- Typed HTTP client for the Viber REST API
types.ts -- Request/response TypeScript interfaces
tools/
send-message.ts -- One file per tool, Zod schema + handler
... -- 12 more tool files
tests/
viber-client.test.ts -- Client unit tests (mocked fetch)
server.test.ts -- Integration test (spawns server, queries tools/list)
tools/*.test.ts -- Per-tool success + error path testsArchitecture decisions
Zero
console.log-- stdout is the MCP protocol channel; onlyconsole.errorfor diagnosticsNative
fetch-- no axios/node-fetch; minimal runtime dependenciesNo retries -- Viber REST calls are user-driven via MCP; silent retries would hide real problems from the AI
Zod validation -- every tool input is validated before reaching the Viber API
Tools never throw -- errors are caught and returned as
{ isError: true }so the AI can handle them gracefully
Roadmap
Future work -- contributions welcome:
Rich media / carousels --
send_rich_mediatool with carousel layoutKeyboards -- interactive button keyboards on messages
Webhook receiver -- sibling package for incoming events via HTTP
Stickers --
send_stickertoolHTTP transport -- Streamable HTTP for remote MCP deployments
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/serhiizghama/viber-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server