@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.
- package/CHANGELOG.md +16 -0
- package/README.md +2 -1
- 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
|
+
[](https://www.npmjs.com/package/@lehaotech/walmart-mcp)
|
|
3
4
|
[](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/ci.yml)
|
|
4
5
|
[](https://github.com/yufakang0826-hue/walmart-mcp/actions/workflows/release.yml)
|
|
5
6
|
[](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.
|
|
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
|
-
{
|
|
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
|
+
}
|