@storelayer/mcp-server 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -2
package/dist/index.js CHANGED
@@ -13848,7 +13848,7 @@ async function main() {
13848
13848
  ...SKILL_AGENTS.map((f) => ({ ...f, category: "agent" })),
13849
13849
  ...SKILL_TOOLS.map((f) => ({ ...f, category: "tool" }))
13850
13850
  ];
13851
- const server = new Server({ name: "store-layer", version: "0.5.0" }, { capabilities: { tools: {}, prompts: {}, resources: {} } });
13851
+ const server = new Server({ name: "store-layer", version: "0.5.1" }, { capabilities: { tools: {}, prompts: {}, resources: {} } });
13852
13852
  server.setRequestHandler(ListToolsRequestSchema, async () => ({
13853
13853
  tools: manifest.map((tool) => ({
13854
13854
  name: toMcpName(tool.name),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storelayer/mcp-server",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "MCP server for Store Layer — manage loyalty programs, promotions, wallets, and more from Claude Desktop, Claude Code, or Cursor.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,7 +14,8 @@
14
14
  "dev": "bun run src/index.ts",
15
15
  "start": "node dist/index.js",
16
16
  "prepublishOnly": "bun run build",
17
- "publish:npm": "bun run build && npm publish --access public"
17
+ "publish:npm": "bun run build && npm publish --access public",
18
+ "bump": "bun run scripts/bump-version.ts"
18
19
  },
19
20
  "dependencies": {
20
21
  "@modelcontextprotocol/sdk": "^1.12.1"