> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vos.verolabs.co/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP server

> Kết nối công cụ AI với MCP server của Vero OMS Docs

Dùng MCP server của Vero OMS Docs để cho phép công cụ AI được hỗ trợ tìm kiếm tài liệu hiện tại và lấy thông tin về API endpoint.

## Server URL

Dùng MCP server URL này:

```text theme={null}
https://docs.vos.verolabs.co/mcp
```

## MCP server đọc được gì

MCP server tìm kiếm nội dung được lập chỉ mục từ Vero OMS Docs:

* Các trang tham chiếu REST API
* Tài liệu Streaming API
* Hướng dẫn giao diện Vero OMS
* Tài liệu tích hợp

Đây là MCP server dùng để tìm kiếm và đọc tài liệu. MCP server không phải API giao dịch và không thể đặt lệnh hoặc gọi API trực tiếp.

## Kết nối công cụ AI

### Codex

Chạy lệnh sau:

```bash theme={null}
codex mcp add vero-oms-docs --url https://docs.vos.verolabs.co/mcp
```

### Claude Code

Chạy lệnh sau:

```bash theme={null}
claude mcp add --transport http vero-oms-docs https://docs.vos.verolabs.co/mcp
```

### Cursor

Thêm server vào `mcp.json`:

```json theme={null}
{
  "mcpServers": {
    "vero-oms-docs": {
      "url": "https://docs.vos.verolabs.co/mcp"
    }
  }
}
```

### VS Code

Thêm server vào `.vscode/mcp.json`:

```json theme={null}
{
  "servers": {
    "vero-oms-docs": {
      "type": "http",
      "url": "https://docs.vos.verolabs.co/mcp"
    }
  }
}
```

## Prompt khuyến nghị

```text theme={null}
Use the Vero OMS Docs MCP server to find the relevant endpoint or guide.
Use the OpenAPI spec as source of truth for method, path, parameters, auth, request body, and response schema.
Do not invent fields. If a live response conflicts with the spec, report the mismatch before implementing.
```
