delovye-linii-mcp
This server provides MCP tools for interacting with the Russian cargo carrier Delovye Linii (Dellin) API.
calculate — compute shipping cost and delivery time between cities
get_cities — search for cities in the Dellin directory
get_terminals — find terminals in a given city
track — track an order by waybill/order number
create_order — create a cargo shipping order
get_order_history — retrieve order history
It can be run via stdio (Claude Desktop/Cursor) or as a Streamable HTTP server, and requires a DELLIN_API_KEY.
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., "@delovye-linii-mcpрассчитай стоимость доставки из Москвы в Санкт-Петербург, 50 кг"
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.
🗄 Репозиторий заархивирован
Разработка переехала в theYahia/WWmcp — монорепозиторий MCP-серверов для незападных API: СНГ, MENA, Африка, LATAM, Юго-Восточная Азия. Общее ядро
@theyahia/mcp-core, единый CI, единый релизный конвейер.Актуальная версия того, что лежало здесь:
servers/delovye-linii/Пакет в npm прежний —
@theyahia/delovye-linii-mcp, ставится и работает как раньше. Здесь больше ничего не обновляется. Задачи и pull request'ы — в WWmcp.Archived — development moved to theYahia/WWmcp, a monorepo of MCP servers for non-Western APIs. The current version of this package now lives at
servers/delovye-linii/. The npm package@theyahia/delovye-linii-mcpis unchanged. Please open issues and pull requests there.
Деловые Линии MCP — расчёт грузоперевозки и отслеживание через нейросеть
Если вы искали, как посчитать стоимость и срок перевозки Деловыми Линиями обычным вопросом, найти терминал в нужном городе или отследить груз по номеру накладной без личного кабинета — это оно. 6 инструментов поверх API Dellin: расчёт стоимости, справочник городов и терминалов, создание заказов и отслеживание грузов.
Related MCP server: Yandex Delivery MCP
Возможности (6 инструментов)
Инструмент | Описание |
| Расчёт стоимости и сроков доставки |
| Поиск городов в справочнике |
| Отслеживание заказа по номеру накладной |
| Поиск терминалов в городе |
| Создание заказа на грузоперевозку |
| Получение истории заказов |
Быстрый старт
Claude Desktop / Cursor (stdio)
{
"mcpServers": {
"dellin": {
"command": "npx",
"args": ["-y", "@theyahia/delovye-linii-mcp"],
"env": {
"DELLIN_API_KEY": "<YOUR_API_KEY>"
}
}
}
}Streamable HTTP
DELLIN_API_KEY=<YOUR_API_KEY> npx @theyahia/delovye-linii-mcp --http --port=3001Эндпоинты:
POST /mcp— MCP Streamable HTTPGET /health— Health check
Smithery
Установка через Smithery:
npx -y @smithery/cli install @theyahia/delovye-linii-mcp --client claudeПеременные окружения
Переменная | Обязательная | Описание |
| Да | API-ключ из кабинета разработчика: https://dev.dellin.ru/ |
Skills (Claude Code)
Команда | Описание |
| Расчёт стоимости грузоперевозки |
| Отследить груз по номеру накладной |
| Полный цикл: поиск городов + расчёт |
Разработка
npm install
npm run build
npm test
npm run dev # stdio (tsx)
npm run start:http # HTTP-серверЛицензия
MIT
Telegram: @vhodvai
Available Tools
6 toolscalculateB
Расчёт стоимости и сроков доставки Деловыми Линиями.
| Name | Required | Description | Default |
|---|---|---|---|
| width | No | Ширина в м | |
| height | No | Высота в м | |
| length | No | Длина в м | |
| weight | Yes | Вес груза в кг | |
| quantity | No | Количество мест | |
| arrival_city_id | Yes | ID города назначения (из get_cities) | |
| derival_city_id | Yes | ID города отправления (из get_cities) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description states this is a calculation (non-destructive read of pricing), but doesn't disclose whether this requires authentication, whether it commits to anything, how results are returned, or whether it hits a live API with rate limits. For a calculation tool that presumably performs a quote lookup, the behavioral details are thin.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence in Russian that efficiently conveys the tool's purpose. It's appropriately front-loaded and waste-free. Every word earns its place, though it could arguably add a bit more usage context without bloating.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema and no annotations, yet it's a non-trivial 7-parameter tool with 3 required params. The description explains the purpose adequately but doesn't describe what the output/return value looks like (cost amount, currency, delivery days). For a quote tool that returns meaningful pricing data, the lack of return-format guidance is a notable gap. However, given good schema coverage of inputs, the description is minimally adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with all 7 parameters described in the input schema (city IDs from get_cities, dimensions in meters, weight in kg, quantity default of 1). The description adds no parameter-level detail beyond what the schema already gives. Per the rubric, baseline 3 is appropriate when schema does the heavy lifting, and the description doesn't compensate further. However, it does implicitly convey that all inputs relate to shipment dimensions for pricing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool calculates delivery cost and timeframes for Delovye Linii ('Расчёт стоимости и сроков доставки Деловыми Линиями' - calculation of cost and delivery terms for Business Lines). It names the specific resource (cost/timeline calculation) and the transport company, which distinguishes its purpose. However, it doesn't explicitly name sibling alternatives, and the title is null, so the description is the only identifier.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use this tool (to get delivery cost and timeframe quotes), but provides no explicit guidance on when NOT to use it or which sibling tool to use instead. Given siblings include create_order, track, get_terminals, etc., the usage context is somewhat implied but not explicitly differentiated. No prerequisites or exclusions are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_orderC
Создание заказа на грузоперевозку в Деловых Линиях.
| Name | Required | Description | Default |
|---|---|---|---|
| cargo_width | No | Ширина в м | |
| sender_name | Yes | ФИО отправителя | |
| cargo_height | No | Высота в м | |
| cargo_length | No | Длина в м | |
| cargo_weight | Yes | Вес груза в кг | |
| sender_phone | Yes | Телефон отправителя | |
| receiver_name | Yes | ФИО получателя | |
| cargo_quantity | No | Количество мест | |
| receiver_phone | Yes | Телефон получателя | |
| sender_address | No | Адрес забора груза (если забор от двери) | |
| sender_city_id | Yes | ID города отправителя | |
| receiver_address | No | Адрес доставки (если до двери) | |
| receiver_city_id | Yes | ID города получателя | |
| cargo_description | No | Описание груза | |
| sender_terminal_id | No | ID терминала отправления (если сдача на терминал) | |
| receiver_terminal_id | No | ID терминала получения (если выдача с терминала) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full disclosure burden. It does not state the tool is a write/mutation action, any pricing/quote implications, whether addresses vs terminal pickups are mutually exclusive, limits, or what happens on success/failure. It adds only the carrier context (Business Lines).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely short (one sentence). While concise, it undersells a complex 16-parameter mutation tool. This is under-specification rather than effective conciseness, though it is front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 16-parameter mutation tool with no annotations and no output schema, the description should explain dimensions like the sender/receiver terminal-vs-address relationship (mutually exclusive?), quantity defaulting, and expected outcome. None of this is covered. The tool is more complex than the single-sentence description acknowledges.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 16 parameters. The description adds no parameter-level semantics beyond what's in the schema. Per rubric, baseline is 3 when coverage is high, and the description doesn't compensate, so 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Creating a cargo transportation order in Business Lines' — a specific verb (create) plus resource (order) plus context (Business Lines). However, it does not distinguish itself from siblings like track, calculate, or get_order_history, which are clearly separate functions but no differentiation of scope or relationship is given.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives. No mention that city IDs and terminal IDs must be fetched first via get_cities/get_terminals. No mention of prerequisites or workflow order, which matters since required sender/receiver city_ids suggest prior lookups.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_citiesC
Поиск городов в справочнике Деловых Линий.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Название города или его часть для поиска |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions it's a reference/directory search (implying read-only), but doesn't state whether partial matches are supported, case sensitivity, language handling, pagination, or response format. For a lookup tool it's minimally descriptive but leaves significant behavioral unknowns unaddressed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with zero waste. It's appropriately sized for a simple single-parameter lookup tool. Being front-loaded with the search verb makes the purpose immediately clear. However, given the minimal content, one could argue it under-specifies, but for a straightforward query tool this length is reasonable.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter search tool with no output schema, this is moderately complete. The tool's apparent simplicity (one query param) means limited complexity to document. However, the lack of any behavioral detail (match semantics, return format, limits) leaves some gaps, and with no annotations or output schema, the description is the only documentation. It's adequate but not rich.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% — the single 'query' parameter is documented as 'Название города или его часть для поиска' (city name or part of it for searching). The description adds nothing beyond the schema's explanation of the parameter. Since coverage is fully high, baseline 3 applies; the description doesn't enhance parameter understanding but the schema already handles it adequately.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description 'Поиск городов в справочнике Деловых Линий' clearly states the verb (поиск/search) and resource (города в справочнике Деловых Линий - cities in the Business Lines directory). It distinguishes the resource as a reference directory lookup. However, it doesn't specify the scope or return details, and the sibling list includes get_terminals which is analogous but for a different resource, so some differentiation exists by resource type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. With siblings like get_terminals (a related directory lookup), the description doesn't clarify when cities vs terminals are relevant, or mention any exclusions or prerequisites. The 'Деловых Линий' hint suggests it's for a specific shipping company's directory, but no explicit usage context or when-not-to-use is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_order_historyC
Получение истории заказов Деловых Линий.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Номер страницы | |
| date_to | No | Дата конца периода (YYYY-MM-DD) | |
| date_from | No | Дата начала периода (YYYY-MM-DD) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description doesn't state whether this is a read-only operation, what pagination behavior exists, whether date filters are required or optional, or what the response format looks like. For a tool with no annotation coverage, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single short sentence, which is concise. However, it's under-specified rather than appropriately concise - a one-line description that only states the basic purpose doesn't earn high marks for efficient communication since it omits essential behavioral and usage context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no annotations and no output schema, the description must compensate but doesn't. It's a read-oriented tool (implied by 'history') but provides no pagination details, date range semantics, or expected response information. For a retrieval tool with date parameter support and no annotation coverage, this is incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all three parameters (page, date_to, date_from) with Russian descriptions. The description adds no parameter-level information beyond what the schema provides. The baseline of 3 applies since schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Получение истории заказов Деловых Линий' (Getting order history of Business Lines), which identifies the verb (получение/getting) and resource (история заказов/order history). However, it doesn't differentiate this from siblings like track or create_order beyond the obvious history purpose, and it's quite minimal.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool vs alternatives. Siblings like track, calculate, and create_order exist but the description gives no context on when order history is appropriate versus tracking a single order. There's no exclusions or alternative tool mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_terminalsA
Поиск терминалов Деловых Линий в указанном городе.
| Name | Required | Description | Default |
|---|---|---|---|
| city_id | Yes | ID города для поиска терминалов (из get_cities) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. A 'поиск' (search) operation is implicitly read-only, and the description states it operates on a specified city. However, it does not disclose return format, whether results include address/phone/working hours, or if auth is required.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One concise sentence that fully conveys the tool's purpose with zero waste. For a single-parameter tool with full schema coverage, this level of brevity is appropriate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple lookup tool with one documented parameter, the description is mostly adequate. However, with no other useful sibling tools nearby and no output schema, it could mention what terminal information is returned to help agents decide if this is the right tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and the single parameter (city_id) is documented in the schema as 'ID города для поиска терминалов (из get_cities)'. The description adds minimal extra value since it just says 'в указанном городе' which largely repeats the schema's city parameter description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches for DL terminals in a specified city, using a specific verb+resource+scope pattern. It distinguishes from siblings since none of them (calculate, track, create_order, get_order_history, get_cities) relate to terminal search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage—search terminals by city—but does not explicitly state when to use it vs alternatives. There's no exclusion guidance or mention of related siblings, though the context (needs a city ID from get_cities) is implied by the schema.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
trackC
Отслеживание заказа Деловых Линий по номеру накладной.
| Name | Required | Description | Default |
|---|---|---|---|
| doc_id | Yes | Номер накладной или заказа Деловых Линий |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full responsibility for behavioral disclosure. It does not mention whether this is a read-only query, whether it requires authentication, what delivery status information it returns, or whether multiple shipment events are returned. For a tracking tool, the absence of output-behavior details is a meaningful gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence with zero wasted words. It states the action, the target system, and the input identifier in minimal text. This is appropriately sized for a single-parameter tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has one string parameter, no annotations, and no output schema. For a tracking tool, the description should convey what status or result the user receives (e.g., shipment status, delivery progress, history). It does not mention return behavior or any side-effects, and with no output schema and no annotations, the agent is left guessing what the tool returns. Given the sibling get_order_history overlap, more context is warranted.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% — the single doc_id parameter is documented as 'Номер накладной или заказа' (waybill or order number) in the schema. The description repeats the same parameter concept, adding little beyond the schema. Per the baseline for high schema coverage, a 3 is appropriate; the description does clarify the identifier type aligns with the waybill number used in tracking.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool's function: tracking a Деловые Линии (Business Lines) order by waybill number. It names the verb (отслеживание/tracking), the resource (заказ Деловых Линий), and the identifier (номер накладной). However, it doesn't clearly distinguish itself from sibling get_order_history, which likely serves a similar tracking/order-info purpose, reducing clarity of differentiation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There's no guidance on when to use this tool versus alternatives. get_order_history in sibling tools likely overlaps in purpose for order-related queries, yet no exclusions or alternative guidance is given. The description only implies the use case (tracking a specific order by waybill number) without explicit when-to-use or when-not-to-use context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.1.0- First observed
calculate - First observed
create_order - First observed
get_cities - First observed
get_order_history - First observed
get_terminals - First observed
track
TDQS
Each tool targets a distinct operation: calculate pricing, track shipments, search terminals, create orders, view history, and search cities. There is minor overlap potential between calculate (rate/schedule) and create_order (which may imply cost negotiation), and get_order_history vs track could overlap conceptually but generally serve different query types. Overall boundaries are clear enough for an agent.
Most tools follow a clean verb_noun pattern: calculate, get_terminals, create_order, get_order_history, get_cities. Only 'track' deviates as a bare verb rather than verb_noun (e.g. track_order or get_tracking). This is a minor inconsistency but otherwise the naming is predictable and readable.
Six tools is a well-scoped set for a logistics/courier MCP server covering the major user journeys: quoting, booking, tracking, and reference lookups. Each tool clearly earns its place, and the count feels appropriate for the domain.
The surface covers core workflows well: city lookup, terminal lookup, pricing, order creation, order tracking, and order history. Obvious gaps include the ability to cancel or update an order, and there is no document/label generation for shipping, though these are secondary for a courier integration. Core lifecycle is otherwise present.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
MCP server for ua_postal_tracking_mcp
MCP server for EasyPost — rate shipments, buy & refund labels, track packages, verify addresses.
MCP server for Linear project management and issue tracking
Furgonetka MCP Server is an extension for LLMs (such as Claude) that integrates AI assistants with Poland's most popular courier brokerage platform. The server enables models to interact directly with services from various couriers (including InPost, DPD, DHL, UPS, and Poczta Polska) through a single, unified interface. With this integration, your AI stops just "writing about logistics" and starts actually managing it.
Related MCP Servers
- FlicenseAqualityDmaintenanceMCP server for BlueDart (DHL eCommerce India) shipping API enabling waybill creation, tracking, pickup scheduling, and transit time lookup via MCP tools.8-
- AlicenseDqualityDmaintenanceMCP server for Yandex Delivery API, allowing AI assistants to manage deliveries, track couriers, and handle orders.21MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that integrates with the Jadlog logistics API, enabling shipping order creation and cancellation, freight simulation, tracking queries, CT-e XML retrieval, pick-up/drop-off point lookup, QR code generation, and TOTVS Moda integration for order payloads.MIT
- AlicenseNot gradedqualityBmaintenanceMCP server providing access to Russian Railways ticket API, enabling train search, station lookup, and trip information.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/theYahia/delovye-linii-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server