Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
HOSTNoХост привязки HTTP (по умолчанию 127.0.0.1)127.0.0.1
PORTNoПорт HTTP-сервера (по умолчанию 3000)3000
MINDBOX_API_KEYNoСекретный ключ API Mindbox (также принимается MINDBOX_SECRET_KEY)
MINDBOX_ALLOW_RAWNo0/false/off/no отключает run_operationtrue
MINDBOX_HTTP_TOKENNoBearer-токен для защиты /mcp (если задан — обязателен в запросах)
MINDBOX_SECRET_KEYNoАльтернативное имя для MINDBOX_API_KEY (также принимается)
MINDBOX_TIMEOUT_MSNoТаймаут одной попытки в мс (по умолчанию 15000)15000
MINDBOX_ENDPOINT_IDYesID точки интеграции (endpointId)
MINDBOX_MAX_RETRIESNoЧисло повторов при 429/5xx/таймауте (по умолчанию 3)3
MINDBOX_RETRY_BASE_MSNoБазовая задержка backoff в мс (по умолчанию 500)500
MINDBOX_HTTP_ALLOWED_HOSTSNoДоп. разрешённые Host (через запятую) для DNS-rebinding защиты
MINDBOX_HTTP_ALLOWED_ORIGINSNoДоп. разрешённые 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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 6 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness4/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues