This module allows you to connect Claude to your point-of-sale software, giving Claude access to your sales data, as well as all other data, and the ability to record sales in the software.
Node.js : Download and install Node.js
Claude Desktop : Download and install Claude Desktop
Edit your claude_desktop_config.json configuration file
On Windows
%APPDATA%\Claude\claude_desktop_config.jsonUnder Mac OS
~/Library/Application Support/Claude/claude_desktop_config.jsonComplete the following configuration file after injecting your webapp access codes.
{ "mcpServers": { "caisse": { "command": "npx", "args": [ "caisse-enregistreuse-mcp-server", "--shopid=[replaceWithYourSHOPID]", "--apikey=[replaceWithYourAPIKEY]" ] } }} npx caisse-enregistreuse-mcp-server --shopid=12345 --apikey=abcdef123456 Can also be executed step by step
git clone https://github.com/paracetamol951/caisse-enregistreuse-mcp-server.gitcd caisse-enregistreuse-mcp-servernpm installnpm run build// tester le lancement (optionnel)npm run start:stdioOnce the installation is complete, the claude_desktop_config.json file should contain this configuration.
{ "mcpServers": { "caisse": { "command": "node", "args": [ "[installFolder]\\caisse-enregistreuse-mcp-server\\build\\stdio.js" ], "cwd": "[installFolder]\\caisse-enregistreuse-mcp-server", "env": { "APIKEY": "[replaceWithYourAPIKEY]", "SHOPID": "[replaceWithYourSHOPID]" } } }}Serveur MCP Register now
This document is made available under the terms of the licence Creative Commons Attribution 4.0 International (CC BY 4.0) .