·
2 commits
to main
since this release
Major Changes
-
#39
df51410Thanks @ajimae! - major package updates and bug fixesWhat Changed
- Tool output now is defaulted to
json
this means if--toolOutputFormatoption is not specified then it defaults tojson - Tool output text in
jsonformat has been dropped
the root explanatory text for tool output json object has been removed
// before { "READ CART DISCOUNT RESULT": { limit: 10, offset: 0, count: 10, results: [ { id: '123', name: 'Cart Discount 1', description: 'This is a cart discount', code: '1234567890', } ], }, } // after { limit: 10, offset: 0, count: 10, results: [ { id: '123', name: 'Cart Discount 1', description: 'This is a cart discount', code: '1234567890', } ], }
The
READ CART DISCOUNT RESULTtext has been dropped- The
alltool now requires settingisAdminoption totrue
npx -y @commercetools/commerce-mcp --tools="all" --isAdmin=true ... - Tool output now is defaulted to
Patch Changes
- #32
c29fcefThanks @geethanga-ct! - fix(security): prevent credential leak in auth error message