SMS-Activate MCP Server
Allows requesting virtual phone numbers and managing SMS activations for Facebook via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for Google via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for Instagram via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for Telegram via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for Uber via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for Viber via SMS-Activate.
Allows requesting virtual phone numbers and managing SMS activations for WhatsApp via SMS-Activate.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SMS-Activate MCP ServerRequest a virtual number for Telegram"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SMS-Activate MCP Server
English
MCP (Model Context Protocol) server for integrating with SMS-Activate service - a platform for receiving SMS verification codes and temporary email addresses.
Features
📱 Phone Number Operations: Request virtual numbers, check SMS codes, manage activations
📧 Email Activations: Purchase temporary emails, check inbox, manage email sessions
💰 Account Management: Check balance, view activation history
🌍 Service Information: Get available countries, operators, services, and prices
🔄 Real-time Status: Track activation status and retrieve verification codes
Prerequisites
Node.js 18 or higher
npm or yarn
SMS-Activate API key (get it from sms-activate.io)
Installation
1. Clone the repository
git clone https://github.com/momentum100/sms-activate-mcp.git
cd sms-activate-mcp2. Install dependencies
npm install3. Configure environment
Create a .env file in the project root:
SMS_ACTIVATE_API_KEY=your_api_key_here
SMS_ACTIVATE_BASE_URL=https://api.sms-activate.ae4. Build the project
npm run build5. Test the server
npm startConfiguration for Claude Desktop
Add this configuration to your Claude Desktop settings:
Windows
Location: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["C:/path/to/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "your_api_key_here"
}
}
}
}macOS
Location: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["/Users/username/path/to/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "your_api_key_here"
}
}
}
}Linux
Location: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["/home/username/path/to/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "your_api_key_here"
}
}
}
}Available Tools
Phone Number Operations
request_number- Request a virtual phone number for SMS verificationservice(required): Service code or name (e.g., "tg" or "Telegram")country(optional): Country ID (0=Russia, 1=Ukraine, etc.)operator(optional): Mobile operatorforward(optional): Enable forwarding (0 or 1)ref(optional): Referral code
get_status- Check activation status and retrieve SMS codeactivationId(required): The activation ID from request_number
set_status- Change activation statusactivationId(required): The activation IDstatus(required): Status code (1=resend, 3=new code, 6=complete, 8=cancel)
get_active_activations- Get list of all active activationsget_activation_history- View activation history
Email Operations
purchase_email- Purchase a temporary email addresssite(required): Target website (e.g., "telegram.com")mailDomain(required): Email domain (e.g., "gmail.com")
get_email_status- Check email activation status and inboxemailId(required): Email activation ID
cancel_email- Cancel email activationemailId(required): Email activation ID
reorder_email- Reorder the same email activationemailId(required): Email activation ID
get_email_domains- Get available email domains for a websitesite(optional): Target website
Information Tools
get_balance- Check account balanceget_numbers_status- Get available phone numbers countget_countries- Get list of all available countriesget_services- Get list of all available servicesget_operators- Get operators for a specific countryget_prices- Get service pricesget_top_countries- Get top countries for a specific service
Common Service Codes
Code | Service |
| Telegram |
| |
| |
| |
| |
| |
| Viber |
| Uber |
| Any other |
Common Country IDs
ID | Country |
0 | Russia |
1 | Ukraine |
2 | Kazakhstan |
3 | China |
4 | Philippines |
5 | Myanmar |
6 | Indonesia |
10 | Vietnam |
12 | USA (Virtual) |
16 | England |
22 | India |
Development
# Run in development mode
npm run dev
# Build the project
npm run build
# Start the server
npm startTroubleshooting
"SMS_ACTIVATE_API_KEY environment variable is required" - Create
.envfile with your API key"BAD_KEY" or "ERROR_SQL" - Verify API key and account balance
Connection errors - Check internet connection and API availability
Related MCP server: VirtualSMS MCP Server
Русский
MCP (Model Context Protocol) сервер для интеграции с сервисом SMS-Activate - платформой для получения SMS кодов верификации и временных email адресов.
Возможности
📱 Операции с номерами: Запрос виртуальных номеров, проверка SMS кодов, управление активациями
📧 Email активации: Покупка временных email адресов, проверка входящих, управление сессиями
💰 Управление аккаунтом: Проверка баланса, просмотр истории активаций
🌍 Информация о сервисах: Получение доступных стран, операторов, сервисов и цен
🔄 Статус в реальном времени: Отслеживание статуса активации и получение кодов верификации
Требования
Node.js 18 или выше
npm или yarn
API ключ SMS-Activate (получите на sms-activate.io)
Установка
1. Клонирование репозитория
git clone https://github.com/momentum100/sms-activate-mcp.git
cd sms-activate-mcp2. Установка зависимостей
npm install3. Настройка окружения
Создайте файл .env в корне проекта:
SMS_ACTIVATE_API_KEY=ваш_api_ключ
SMS_ACTIVATE_BASE_URL=https://api.sms-activate.ae4. Сборка проекта
npm run build5. Тестирование сервера
npm startКонфигурация для Claude Desktop
Добавьте эту конфигурацию в настройки Claude Desktop:
Windows
Расположение: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["C:/путь/к/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "ваш_api_ключ"
}
}
}
}macOS
Расположение: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["/Users/username/путь/к/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "ваш_api_ключ"
}
}
}
}Linux
Расположение: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"sms-activate": {
"command": "node",
"args": ["/home/username/путь/к/sms-activate-mcp/dist/index.js"],
"env": {
"SMS_ACTIVATE_API_KEY": "ваш_api_ключ"
}
}
}
}Доступные инструменты
Операции с телефонными номерами
request_number- Запрос виртуального номера телефона для SMS верификацииservice(обязательный): Код или название сервиса (например, "tg" или "Telegram")country(опциональный): ID страны (0=Россия, 1=Украина и т.д.)operator(опциональный): Мобильный операторforward(опциональный): Включить переадресацию (0 или 1)ref(опциональный): Реферальный код
get_status- Проверка статуса активации и получение SMS кодаactivationId(обязательный): ID активации из request_number
set_status- Изменение статуса активацииactivationId(обязательный): ID активацииstatus(обязательный): Код статуса (1=переотправить, 3=новый код, 6=завершить, 8=отменить)
get_active_activations- Получить список всех активных активацийget_activation_history- Просмотр истории активаций
Операции с Email
purchase_email- Покупка временного email адресаsite(обязательный): Целевой сайт (например, "telegram.com")mailDomain(обязательный): Email домен (например, "gmail.com")
get_email_status- Проверка статуса email активации и входящих сообщенийemailId(обязательный): ID email активации
cancel_email- Отмена email активацииemailId(обязательный): ID email активации
reorder_email- Повторный заказ той же email активацииemailId(обязательный): ID email активации
get_email_domains- Получить доступные email домены для сайтаsite(опциональный): Целевой сайт
Информационные инструменты
get_balance- Проверка баланса аккаунтаget_numbers_status- Получить количество доступных номеровget_countries- Получить список всех доступных странget_services- Получить список всех доступных сервисовget_operators- Получить операторов для конкретной страныget_prices- Получить цены на сервисыget_top_countries- Получить топ стран для конкретного сервиса
Основные коды сервисов
Код | Сервис |
| Telegram |
| |
| |
| |
| |
| |
| Viber |
| Uber |
| Любой другой |
Основные ID стран
ID | Страна |
0 | Россия |
1 | Украина |
2 | Казахстан |
3 | Китай |
4 | Филиппины |
5 | Мьянма |
6 | Индонезия |
10 | Вьетнам |
12 | США (Виртуальный) |
16 | Англия |
22 | Индия |
Разработка
# Запуск в режиме разработки
npm run dev
# Сборка проекта
npm run build
# Запуск сервера
npm startРешение проблем
"SMS_ACTIVATE_API_KEY environment variable is required" - Создайте файл
.envс вашим API ключом"BAD_KEY" или "ERROR_SQL" - Проверьте API ключ и баланс аккаунта
Ошибки подключения - Проверьте интернет-соединение и доступность API
Project Structure
sms-activate-mcp/
├── src/
│ ├── index.ts # Main MCP server / Основной MCP сервер
│ └── sms-activate-client.ts # SMS-Activate API client / Клиент API
├── dist/ # Compiled JavaScript / Скомпилированный код
├── docs/ # API documentation / Документация API
│ ├── SMS-ACTIVATE.postman_collection.json
│ ├── api-protocol-for-working-with-sms-activate.json
│ └── services.json
├── package.json
├── tsconfig.json
├── .env.example
└── README.mdSupport / Поддержка
Issues: GitHub Issues
SMS-Activate Support: sms-activate.io/support
API Documentation: sms-activate.io/api2
License
MIT License - see LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Author
Created by momentum100
Acknowledgments
SMS-Activate for providing the SMS verification service
Anthropic for the MCP protocol specification
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.
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/momentum100/sms-activate-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server