caisse-enregistreuse-mcp-server

caisse-enregistreuse-mcp-server

Connect to a sales recorder system (or POS, cash register).

Category
访问服务器

README

🧾 Kash MCP Server

License: GPL v3 Live Demo GitHub Stars

Kash MCP

Kash MCP Server is a server compliant with the MCP (Model Context Protocol), allowing ChatGPT, Claude, and other MCP-compatible clients to connect to a sales recorder system (or POS, cash register).

It provides a simple interface to:

  • 📊 View sales and revenue
  • 🧾 Create and record receipts
  • 🛒 Manage products and stock
  • 🧠 Generate automated reports through conversational requests

🟢 Live Server: https://mcp.kash.click


Connect your cash register to ChatGPT, Claude, or n8n — and manage your business simply by talking.

Caisse MCP

Imagine your cash register understanding your sentences, executing your commands, and analyzing your reports — without a single click.
With this intelligent gateway, the free-cash-register.net software becomes compatible with ChatGPT, Claude, and n8n, transforming your interactions into concrete actions.
Just say “record an order for two coffees at table 4” or “show me the invoice for order 125” — and it’s done.

You can also ask “what’s my revenue for this week?” or “who are my best customers on Tuesdays?”.
Your favorite assistant communicates directly with your cash register and responds instantly.
This is a new way to run your business: smoother, faster, and incredibly natural.
Your voice becomes your interface, and your assistant becomes your new coworker.

This project exposes the kash.click API as Model Context Protocol (MCP) tools, available over HTTP (Streamable) and/or STDIO.


🚀 Features

  • Sales: sale_create with support for catalog and free lines.
  • Orders : get the order list in the specified date range
  • Data (lists): products, departments, department groups, clients, variations, deliveries, payment methods, cashboxes, delivery zones, relay points, discounts, users…

🔹 Example usage (ChatGPT / Claude MCP)

  • 💬 “Show me today’s sales”
  • 💬 “Record a sale of 2 coffees and 1 croissant at table 84”
  • 💬 “Ten red roses to deliver to Mrs. Dupond at 6:15 PM!”
  • 💬 “Generate a cash register report for the week”
  • 💬 “Have takeaway sales increased this year?”
  • 💬 “Did customer Dupont pay for their order?”

⚙Prerequisities

You need to have a free-cash-register.net account.

If you don't have one, you can register at :

https://kash.click/free-pos-software/ChatGPT

Then in the software, you have to get your APIKEY and SHOPID in Setup, Webservices page.


⚙️ Installation

Claude

Minimum installation

Edit the file claude_desktop_config.json in your Claude Desktop configuration directory:

Windows

%APPDATA%\Claude\claude_desktop_config.json

Mac OS

~/Library/Application Support/Claude/claude_desktop_config.json

Provide the following content after replacing your SHOPID and APIKEY.

  {
  "mcpServers": {
    "caisse": {
      "command": "npx",
      "args": [
        "caisse-enregistreuse-mcp-server",
        "--shopid=[replaceWithYourSHOPID]",
        "--apikey=[replaceWithYourAPIKEY]"
      ]
    }
  }
}

Install via npx

Create an installation folder and run the following command in your shell:

npx caisse-enregistreuse-mcp-server --shopid=12345 --apikey=abcdef123456

Install via npm

# 1) Dependencies
npm install

# 2) Environment variables (see below)

# 3) Build
npm run build

Configuration

The binary/runner launches src/stdio.ts and communicates via MCP stdin/stdout.
Edit the file claude_desktop_config.json in your Claude Desktop configuration directory Customize the installation path and set your SHOPID and APIKEY (retrieve them from https://kash.click):

{
  "mcpServers": {
    "caisse": {
      "command": "node",
      "args": [
        "{{PATH_TO_SRC}}/build/stdio.js"
      ],
      "cwd": "{{PATH_TO_SRC}}",
      "env": {
        "SHOPID": "16",
        "APIKEY": "XXXXXXXX"
      }
    }
  }
}

ChatGPT

Requires a workspace account

In Settings → Connectors → Create Connector, fill in the following:

Variable Value
Name Kash POS
Description Can record sales from your catalog and retrieve your sales reports. POS software integration.
MCP Server URL https://mcp.kash.click/mcp
Authentication oAuth

Once added, the connector will be available in new conversations.


Environment variables

Variable Default Description
APIKEY ---- Required: your API key
SHOPID ---- Required: your shop ID

Create a .env file:

APIKEY=XXXXXXXXXXXXXX
SHOPID=XXX

▶️ Launch

HTTP Mode (Streamable MCP)

The HTTP mode requires a Redis server.
It is recommended to use the hosted MCP HTTP/WebSocket server available at https://mcp.kash.click:

  • POST https://mcp.kash.click/mcp with a JSON-RPC MCP message
  • GET https://mcp.kash.click/health{ "status": "ok" }
  • GET https://mcp.kash.click/.well-known/mcp/manifest.json → MCP manifest

🧪 Available MCP Tools (excerpt)

sale_create

Creates a sale.

Input (Zod schema, main fields):

  • shopId: string, apiKey: string
  • payment: number
  • deliveryMethod: 0|1|2|3|4|5|6
  • idUser?: number | string
  • idClient?: number | string
  • idtable?: number | string
  • idcaisse?: number | string
  • numcouverts?: number | string
  • publicComment?: string
  • privateComment?: string
  • pagerNum?: number | string
  • client?: {{ firstname?, lastname?, email?, phone?, address?, zip?, city?, country? }}
  • `items: Array< {{ type:'catalog', productId?, quantity?, titleOverride?, priceOverride?, declinaisons? }} | {{ type:'dept', departmentId?, price?, title? }} | {{ type:'free', price?, title? }}

    `

Legacy item encoding:

  • Catalog: productId_quantity_titleOverride_priceOverride_[...declinaisons]
  • Department sale: -<departmentId>_<price>_<title>
  • Free line: Free_<price>_<title> → Sent as itemsList[].

data_list_* (examples)

  • data_list_products
  • data_list_departments
  • data_list_department_groups
  • data_list_clients
  • data_list_variations
  • data_list_delivery_men
  • data_list_payments
  • data_list_cashboxes
  • data_list_delivery_zones
  • data_list_relay_points
  • data_list_discounts
  • data_list_users
  • data_list_tables

All accept: {{ format=('json'|'csv'|'html') }}.


💻 Compatible Clients

  • ChatGPT (OpenAI) — via external MCP configuration
  • Claude (Anthropic) — via “Tools manifest URL”
  • n8n / Flowise / LangChain — import via public URL

🧩 MCP Manifest Endpoint

The MCP API exposes a JSON manifest describing all available tools for compatible clients (ChatGPT, Claude, n8n, etc.).

Public manifest URL

https://mcp.kash.click/.well-known/mcp/manifest.json

🗂️ This URL is the one to provide to your MCP client when configuring the server.


📋 License

© 2025. GNU GENERAL PUBLIC LICENSE

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选