SMS-Activate MCP Server
MCP server for integrating with SMS-Activate service, enabling phone number operations, email activations, and account management for receiving SMS verification codes and temporary email addresses.
README
SMS-Activate MCP Server
<a name="english"></a>
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-mcp
2. Install dependencies
npm install
3. 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.ae
4. Build the project
npm run build
5. Test the server
npm start
Configuration 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 activations -
get_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 |
|---|---|
tg |
Telegram |
wa |
|
ig |
|
fb |
|
go |
|
tw |
|
vi |
Viber |
ub |
Uber |
ot |
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 start
Troubleshooting
- "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
<a name="russian"></a>
Русский
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-mcp
2. Установка зависимостей
npm install
3. Настройка окружения
Создайте файл .env в корне проекта:
SMS_ACTIVATE_API_KEY=ваш_api_ключ
SMS_ACTIVATE_BASE_URL=https://api.sms-activate.ae
4. Сборка проекта
npm run build
5. Тестирование сервера
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- Получить топ стран для конкретного сервиса
Основные коды сервисов
| Код | Сервис |
|---|---|
tg |
Telegram |
wa |
|
ig |
|
fb |
|
go |
|
tw |
|
vi |
Viber |
ub |
Uber |
ot |
Любой другой |
Основные 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.md
Support / Поддержка
- 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.