kaspi-mcp
# MCP-сервер для Kaspi.kz Marketplace — заказы и товары продавца через ИИ
Если вы искали, как подключить кабинет продавца Kaspi.kz к нейросети и смотреть заказы и товары не заходя в Kaspi Merchant Cabinet — это оно. 3 инструмента: список заказов с фильтрами, каталог товаров продавца и детали заказа по ID. Спрашиваете «какие заказы пришли сегодня» — получаете список прямо в чате.
## Возможности (3 инструмента)
| Инструмент | Описание |
|---|---|
| `get_orders` | Список заказов с фильтрацией |
| `get_products` | Список товаров продавца |
| `get_order` | Детали заказа по ID |
## Быстрый старт
```json
{
"mcpServers": {
"kaspi": {
"command": "npx",
"args": ["-y", "@theyahia/kaspi-mcp"],
"env": {
"KASPI_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
```
## Переменные окружения
| Переменная | Обязательная | Описание |
|---|---|---|
| `KASPI_API_KEY` | Да | API-ключ из кабинета продавца Kaspi.kz |
## Лицензия
MIT
---
Telegram: [@vhodvai](https://t.me/vhodvai)
TDQS
Scored across 3 tools
get_orders and get_order are clearly list versus detail, and get_products targets a distinct resource. The singular/plural pair is the only possible source of confusion, but the descriptions resolve it.
All tools follow the consistent get_<resource> verb_noun pattern, with singular used for detail and plural for list operations. There is no style mixing or vague naming.
Three tools is well-scoped for a focused read-only Kaspi merchant integration. Each tool serves a distinct, necessary purpose with no redundancy.
The server covers order list, order detail, and product list, but lacks product detail and any write or state-change operations like order status updates. Real Kaspi seller workflows would hit significant dead ends.