MCP Hub
Back to servers

KiotViet MCP Server

Enables AI assistants to manage KiotViet retail and F\&B operations including products, orders, customers, invoices, and inventory through the Public API. Features 36 integrated tools with automatic token refresh, middleware chain support, and configurable presets for different access levels.

glama
Updated
Apr 7, 2026

KiotViet MCP Server

MCP (Model Context Protocol) Server cho KiotViet Public API — Kết nối AI assistant với hệ thống quản lý bán hàng KiotViet.

Tính năng

  • 36 tools bao phủ đầy đủ KiotViet Public API
  • Auto token refresh — Token 1 giờ được tự động làm mới trước khi hết hạn
  • Middleware chain — Error handler, validation, rate limit, pagination
  • 2 transport mode — stdio (Claude Desktop) và HTTP (multi-session, Streamable HTTP + SSE legacy)
  • 5 preset — Chọn nhóm tool phù hợp với nhu cầu
  • Docker ready — Build và deploy với Docker Compose

Yêu cầu

  • Node.js >= 18
  • Tài khoản KiotViet với quyền truy cập Public API
  • Client ID, Client Secret, Retailer name từ Thiết lập cửa hàng → Thiết lập kết nối API

Cài đặt

# Clone và cài dependencies
git clone <repo-url>
cd kiotviet-mcp
npm install
npm run build

Cấu hình

Tạo file .env từ template:

cp .env.example .env

Điền thông tin:

KIOTVIET_CLIENT_ID=your_client_id
KIOTVIET_CLIENT_SECRET=your_client_secret
KIOTVIET_RETAILER=your_retailer_name

Sử dụng

Claude Desktop (stdio)

Thêm vào claude_desktop_config.json:

{
  "mcpServers": {
    "kiotviet": {
      "command": "node",
      "args": ["/path/to/kiotviet-mcp/dist/cli.js", "mcp"],
      "env": {
        "KIOTVIET_CLIENT_ID": "your_client_id",
        "KIOTVIET_CLIENT_SECRET": "your_client_secret",
        "KIOTVIET_RETAILER": "your_retailer_name"
      }
    }
  }
}

Chạy thủ công

# stdio mode
node dist/cli.js mcp --client-id X --client-secret Y --retailer Z

# HTTP mode
node dist/cli.js mcp --client-id X --client-secret Y --retailer Z --mode http --port 3000

Docker

# Build image
docker build -t kiotviet-mcp .

# Chạy container
docker run -d -p 3000:3000 \
  -e KIOTVIET_CLIENT_ID=your_client_id \
  -e KIOTVIET_CLIENT_SECRET=your_client_secret \
  -e KIOTVIET_RETAILER=your_retailer_name \
  kiotviet-mcp

Endpoints:

  • Health check: http://localhost:3000/health
  • Streamable HTTP (khuyến nghị): http://localhost:3000/mcp
  • SSE legacy: http://localhost:3000/sse

Tools

Xem danh sách tools

# Tất cả tools
node dist/cli.js tools

# Theo project
node dist/cli.js tools --project products

# Xem presets
node dist/cli.js tools --presets

Danh sách tools theo nhóm

NhómTools
categorieskiotviet_categories_list
productslist, get_by_id, get_by_code, create, update, delete
customerslist, get_by_id, get_by_code, create, update
customerskiotviet_customer_groups_list
orderslist, get, create, update, cancel
invoiceslist, get_by_id, get_by_code, create, update, cancel
purchase-orderslist, get, create
brancheskiotviet_branches_list
userskiotviet_users_list
supplierskiotviet_suppliers_list
bank-accountskiotviet_bank_accounts_list
cashbookkiotviet_cashbook_list
webhookslist, create, update, delete

Presets

PresetMô tảSố tools
preset.defaultTất cả tools36
preset.readonlyChỉ GET — an toàn cho môi trường read-only21
preset.productsHàng hóa + nhóm hàng7
preset.salesĐơn hàng + hóa đơn + khách hàng17
preset.inventoryHàng hóa + nhập kho + nhà cung cấp11

Kích hoạt preset qua CLI:

node dist/cli.js mcp --tools "preset.readonly" ...

F&B Mode

Dùng cho nhà hàng, quán cà phê (API F&B):

KIOTVIET_BASE_URL=https://publicfnb.kiotapi.com

Xác thực

KiotViet dùng OAuth 2.0 Client Credentials. Token có hiệu lực 1 giờ và được tự động làm mới trước khi hết hạn (buffer 5 phút).

Token endpoint: https://id.kiotviet.vn/connect/token


Cấu trúc dự án

src/
├── auth/
│   └── token-manager.ts        # Client Credentials + auto-refresh
├── mcp-server/
│   ├── init.ts                 # Khởi tạo server, đăng ký tools
│   └── transport/
│       ├── stdio.ts            # stdio transport
│       └── sse.ts              # HTTP/SSE transport
├── mcp-tool/
│   ├── types.ts                # McpTool, MiddlewareContext...
│   ├── handler.ts              # KiotViet API handler
│   ├── registry.ts             # Đăng ký tất cả tools + presets
│   ├── presets.ts              # Resolver preset/filter
│   ├── middleware/
│   │   ├── chain.ts
│   │   ├── error-handler.ts
│   │   ├── rate-limiter.ts
│   │   ├── pagination.ts
│   │   └── validation.ts
│   └── tools/                  # 13 modules tool definitions
└── utils/
    ├── config.ts
    ├── http-client.ts
    └── logger.ts
Dockerfile
docker/
└── docker-compose.yml

Scripts

npm run build        # Build TypeScript → dist/
npm run dev          # Chạy trực tiếp với ts-node
npm run format       # Format code với Prettier
npm test             # Chạy tests
npm run test:coverage

Giới hạn API

Thông sốGiá trị
pageSize tối đa100 bản ghi/request
Token TTL3600 giây (1 giờ)
Webhook timeout5 giây
Base URL Retailhttps://public.kiotapi.com
Base URL F&Bhttps://publicfnb.kiotapi.com

License

MIT

Reviews

No reviews yet

Sign in to write a review