@lehaotech/walmart-mcp 0.5.4 → 0.5.5

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 (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +2 -1
  3. package/package.json +73 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ All notable changes to this project are documented here. The format is based on
4
4
  [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres
5
5
  to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [0.5.5] - 2026-06-29
8
+
9
+ ### Changed
10
+ - **README updated to reflect actual published state**:
11
+ - New npm version badge at the top, sourced from
12
+ `https://img.shields.io/npm/v/@lehaotech/walmart-mcp`. Always shows the
13
+ real registry version, no manual bumps.
14
+ - Status row updated from `v0.5.0 (npm) · 70% coverage threshold` to
15
+ `v0.5.4 (npm, with provenance) · 87% statement coverage`. The 70% number
16
+ was the old (failing) gate; the 87% is the actual measured statement
17
+ coverage on the 249-test suite under the 50/40/50/50 threshold.
18
+
19
+ ### Notes
20
+ - No code changes, no behavior changes; pure docs bump. Published only to
21
+ keep the README accurate against what's on npm.
22
+
7
23
  ## [0.5.4] - 2026-06-29
8
24
 
9
25
  ### Fixed
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # walmart-mcp
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/@lehaotech/walmart-mcp?logo=npm)](https://www.npmjs.com/package/@lehaotech/walmart-mcp)
3
4
  [![CI](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/ci.yml/badge.svg)](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/ci.yml)
4
5
  [![Release](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/release.yml/badge.svg)](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/release.yml)
5
6
  [![codecov](https://codecov.io/gh/yufakang0826-hue/walmart-mcp/branch/master/graph/badge.svg)](https://codecov.io/gh/yufakang0826-hue/walmart-mcp)
@@ -27,7 +28,7 @@
27
28
  | **Onboard** | `walmart-mcp setup` (7 MCP clients auto-detected) |
28
29
  | **Self-check** | `walmart-mcp diagnose --export` |
29
30
  | **Docs** | [Quick Start](#5-minute-quick-start) · [Tools](#modules) · [Known Issues](#known-issues) · [Contributing](./CONTRIBUTING.md) · [Architecture](./docs/architecture.md) |
30
- | **Status** | v0.5.0 (npm) · 249 tests passing · 70% coverage threshold · 3 GitHub Actions workflows |
31
+ | **Status** | v0.5.4 (npm, with provenance) · 249 tests passing · 87% statement coverage · 3 GitHub Actions workflows |
31
32
  | **License** | MIT |
32
33
 
33
34
  A Model Context Protocol (MCP) server for the Walmart Marketplace Seller API.
package/package.json CHANGED
@@ -1 +1,73 @@
1
- { "name": "@lehaotech/walmart-mcp", "version": "0.5.4", "publishConfig": { "access": "public" }, "description": "Walmart Marketplace MCP Server for AI-powered seller operations", "type": "module", "main": "build/index.js", "types": "build/index.d.ts", "bin": { "walmart-mcp": "build/index.js" }, "files": [ "build", "README.md", "CHANGELOG.md", "LICENSE", ".env.example" ], "scripts": { "build": "tsc && tsc-alias", "start": "node build/index.js", "dev": "tsx src/index.ts", "diagnose": "tsx src/scripts/diagnose.ts", "test": "vitest", "test:run": "vitest run", "test:sandbox": "npm run build && node test-sandbox.mjs", "inspect": "npm run build && npx @modelcontextprotocol/inspector node build/index.js", "prepublishOnly": "npm run build", "setup": "tsx src/scripts/setup.ts", "typecheck": "tsc --noEmit", "test:coverage": "vitest run --coverage" }, "keywords": [ "mcp", "model-context-protocol", "walmart", "marketplace", "seller", "claude", "ai" ], "author": "Fakang Yu", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/yufakang0826-hue/walmart-mcp.git" }, "bugs": { "url": "https://github.com/yufakang0826-hue/walmart-mcp/issues" }, "homepage": "https://github.com/yufakang0826-hue/walmart-mcp#readme", "dependencies": { "@modelcontextprotocol/sdk": "^1.21.0", "axios": "^1.7.9", "dotenv": "^17.0.0", "winston": "^3.19.0", "zod": "^3.23.8", "zod-to-json-schema": "^3.24.1" }, "devDependencies": { "@types/node": "^22", "tsc-alias": "^1.8.10", "tsx": "^4.19.0", "typescript": "^5.9.0", "vitest": "^3", "@vitest/coverage-v8": "^3" }, "engines": { "node": ">=22" }}
1
+ {
2
+ "name": "@lehaotech/walmart-mcp",
3
+ "version": "0.5.5",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "description": "Walmart Marketplace MCP Server for AI-powered seller operations",
8
+ "type": "module",
9
+ "main": "build/index.js",
10
+ "types": "build/index.d.ts",
11
+ "bin": {
12
+ "walmart-mcp": "build/index.js"
13
+ },
14
+ "files": [
15
+ "build",
16
+ "README.md",
17
+ "CHANGELOG.md",
18
+ "LICENSE",
19
+ ".env.example"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsc && tsc-alias",
23
+ "start": "node build/index.js",
24
+ "dev": "tsx src/index.ts",
25
+ "diagnose": "tsx src/scripts/diagnose.ts",
26
+ "test": "vitest",
27
+ "test:run": "vitest run",
28
+ "test:sandbox": "npm run build && node test-sandbox.mjs",
29
+ "inspect": "npm run build && npx @modelcontextprotocol/inspector node build/index.js",
30
+ "prepublishOnly": "npm run build",
31
+ "setup": "tsx src/scripts/setup.ts",
32
+ "typecheck": "tsc --noEmit",
33
+ "test:coverage": "vitest run --coverage"
34
+ },
35
+ "keywords": [
36
+ "mcp",
37
+ "model-context-protocol",
38
+ "walmart",
39
+ "marketplace",
40
+ "seller",
41
+ "claude",
42
+ "ai"
43
+ ],
44
+ "author": "Fakang Yu",
45
+ "license": "MIT",
46
+ "repository": {
47
+ "type": "git",
48
+ "url": "git+https://github.com/yufakang0826-hue/walmart-mcp.git"
49
+ },
50
+ "bugs": {
51
+ "url": "https://github.com/yufakang0826-hue/walmart-mcp/issues"
52
+ },
53
+ "homepage": "https://github.com/yufakang0826-hue/walmart-mcp#readme",
54
+ "dependencies": {
55
+ "@modelcontextprotocol/sdk": "^1.21.0",
56
+ "axios": "^1.7.9",
57
+ "dotenv": "^17.0.0",
58
+ "winston": "^3.19.0",
59
+ "zod": "^3.23.8",
60
+ "zod-to-json-schema": "^3.24.1"
61
+ },
62
+ "devDependencies": {
63
+ "@types/node": "^22",
64
+ "tsc-alias": "^1.8.10",
65
+ "tsx": "^4.19.0",
66
+ "typescript": "^5.9.0",
67
+ "vitest": "^3",
68
+ "@vitest/coverage-v8": "^3"
69
+ },
70
+ "engines": {
71
+ "node": ">=22"
72
+ }
73
+ }