boxberry-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | Порт для HTTP-транспорта (по умолчанию 3000) | 3000 |
| BOXBERRY_API_TOKEN | Yes | API-токен из личного кабинета Boxberry |
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 |
|---|---|
| list_citiesB | Список городов Boxberry с возможностью поиска по названию. |
| list_pointsA | Список пунктов выдачи Boxberry в указанном городе. |
| calc_deliveryB | Расчёт стоимости и сроков доставки Boxberry. |
| trackB | Отслеживание отправления Boxberry по трек-номеру. |
| zip_checkB | Проверка почтового индекса на доступность доставки Boxberry. |
| list_servicesC | Список оказанных услуг по отправлению Boxberry. |
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 operation: city lookup, pickup point lookup, delivery calculation, tracking, postal code check, and service listing. There is no meaningful overlap between them, and the descriptions make the boundary of each tool clear.
The naming is mostly consistent with snake_case verb_noun patterns like list_cities, list_points, and list_services. Minor deviations exist: track is a bare verb and zip_check is noun_verb instead of check_zip, but the overall convention is still readable and predictable.
Six tools is well-scoped for a delivery information server. Each tool covers a meaningful part of the Boxberry workflow without unnecessary duplication or bloat.
The tool set covers location discovery, pricing, tracking, and service lookups, which are the core informational workflows for Boxberry. It does not include order creation or management, but that appears outside the stated scope of the server.