Litium summed up from the shell.
Pull Litium orders, revenue per week in your base currency, best sellers, stock levels, price lists and customers as JSON — from Bash over the Litium MCP. One back-office service account, then every read is a shell command an agent can schedule. Read-only: nothing is written back to the store.
cogny --who
TWO PATHSChecking how a Litium store is doing means opening Sales in the back office, filtering orders by date and channel, exporting, and building week-over-week sums in a spreadsheet. get_sales_summary pages through every order server-side and returns totals per day, week or month — split by channel, country and currency — in one call. Connect Litium once in Cogny Solo and let your coding agent — or scheduled reports — do the querying for you.
❯ start SoloSelf-onboard with one command. The CLI issues a key, wires nothing, and exposes every Litium tool over JSON-RPC. First 15 calls are free.
$ npx @cogny/cli init --agent claude-codecogny tools call
3 EXAMPLESReal tool names from the Litium MCP. Send --input JSON, get JSON back.
mcp__Litium__get_sales_summaryOrders and revenue per ISO week in the base currency, with channel and country splits.mcp__Litium__get_top_productsBest-selling articles in a window by revenue, quantity or order count.mcp__Litium__list_ordersOrders in a window, filtered by Litium 7 state codes (payment 4 = Paid).cogny tools list
MOREA sample of the rest of the Litium surface. Run cogny tools list --json for every tool and its input schema.
mcp__Litium__get_storemcp__Litium__count_ordersmcp__Litium__get_ordermcp__Litium__search_productsmcp__Litium__get_productmcp__Litium__search_variantsmcp__Litium__get_variantmcp__Litium__list_categoriesmcp__Litium__list_inventoriesmcp__Litium__get_inventory_itemsmcp__Litium__list_price_listsmcp__Litium__get_price_list_itemsmcp__Litium__search_customersmcp__Litium__get_customermcp__Litium__call_admin_apicogny --faq
No — it is the Cogny CLI calling the Litium MCP over the cogny-mcp-proxy, which speaks Litium’s Admin Web API (docs.litium.dev). You connect a back-office service account once in Cogny, then read the store from Bash. Litium AB is not affiliated.
Litium 7 and Litium 8. The proxy probes the Admin Web API once per store to tell them apart (orders live at /sales/orders on 7 and /sales/salesOrders on 8) and normalizes both order shapes to one record, so the same tools and templates work on either.
In the Litium back office: Settings → System settings → Service accounts. Create a service account with read permission for Sales, Products, Customers and Globalization, copy its username and password, and enter them in Cogny together with the store URL (the host that serves /Litium/swagger). Service accounts cannot log in to the back office or the storefront.
No. Every tool is read-only, and the call_admin_api escape hatch only allows GET and POST to /search and /keyLookups paths. Writes (orders, catalog, prices) are deliberately not exposed in this first release.
get_sales_summary and get_top_products convert each order to the store’s base currency using the currency’s exchange rate (Litium 7: the currency table; Litium 8: the rate stored on the order) and also report native amounts per currency so you can sanity-check the conversion.
related CLIs
Building an agent? The full tool map for all servers is one fetch: /cli/llms.txt