mindbox-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Хост привязки HTTP (по умолчанию 127.0.0.1) | 127.0.0.1 |
| PORT | No | Порт HTTP-сервера (по умолчанию 3000) | 3000 |
| MINDBOX_API_KEY | No | Секретный ключ API Mindbox (также принимается MINDBOX_SECRET_KEY) | |
| MINDBOX_ALLOW_RAW | No | 0/false/off/no отключает run_operation | true |
| MINDBOX_HTTP_TOKEN | No | Bearer-токен для защиты /mcp (если задан — обязателен в запросах) | |
| MINDBOX_SECRET_KEY | No | Альтернативное имя для MINDBOX_API_KEY (также принимается) | |
| MINDBOX_TIMEOUT_MS | No | Таймаут одной попытки в мс (по умолчанию 15000) | 15000 |
| MINDBOX_ENDPOINT_ID | Yes | ID точки интеграции (endpointId) | |
| MINDBOX_MAX_RETRIES | No | Число повторов при 429/5xx/таймауте (по умолчанию 3) | 3 |
| MINDBOX_RETRY_BASE_MS | No | Базовая задержка backoff в мс (по умолчанию 500) | 500 |
| MINDBOX_HTTP_ALLOWED_HOSTS | No | Доп. разрешённые Host (через запятую) для DNS-rebinding защиты | |
| MINDBOX_HTTP_ALLOWED_ORIGINS | No | Доп. разрешённые Origin (через запятую) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_customerA | Получение профиля клиента из Mindbox по email, телефону или ID. |
| create_orderB | Создание заказа в Mindbox с привязкой к клиенту. |
| get_segmentsC | Получение сегментов клиента в Mindbox. |
| get_product_listC | Получение списка товаров из Mindbox. |
| update_customerC | Обновление профиля клиента в Mindbox. |
| run_operationA | ⚠️ ОПАСНО: выполнение ПРОИЗВОЛЬНОЙ операции Mindbox API под секретным ключом. Может изменять данные. Отключается через MINDBOX_ALLOW_RAW=0. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct function: customer profile retrieval/update, order creation, segments lookup, product list, and a raw operation escape hatch. No two tools seem to overlap, and the dangerous run_operation is clearly separated by its warning.
All tools follow a consistent snake_case verb_noun pattern (get_customer, create_order, get_segments, get_product_list, update_customer, run_operation). This is predictable and easy for an agent to parse.
With 6 tools, the set is well-scoped for a CRM/ecommerce integration. It covers core customer and order operations without unnecessary bloat, making it easy to navigate.
The set covers customer retrieval/update, order creation, segments, and products, but lacks explicit order retrieval or listing, and there is no direct customer creation. However, the run_operation tool provides a raw API fallback, mitigating some gaps, though it introduces risk.