# Walmart Marketplace APIs (pypi · mcp-walmart-marketplace)

MCP server for Walmart Marketplace APIs (US, 3P seller)

- Trust score: 68/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-23

## Components

- pypi · `mcp-walmart-marketplace`: 68/100 (this document), [markdown](https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace.md), [page](https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace)

## Channel facts

- Registry: `pypi`
- Package: `mcp-walmart-marketplace`
- Version: `0.1.0a1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-23.

- **Supply Chain Security**: 100/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - Runs hatchling.build at install time, a recognised native-build step with no shell scripting around it.
  - 2 of 33 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: no license is declared.
  - Actively maintained (last published 1 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 83/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1187 tokens (~148/item across 8 items; 6 tools + 2 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the Walmart Marketplace APIs MCP server?

Walmart Marketplace APIs runs locally as a PyPI package, launched with uvx mcp-walmart-marketplace. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add alyiox-mcp-walmart-marketplace -- uvx mcp-walmart-marketplace
```

### Cursor

```json
{
  "mcpServers": {
    "alyiox-mcp-walmart-marketplace": {
      "command": "uvx",
      "args": [
        "mcp-walmart-marketplace"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "alyiox-mcp-walmart-marketplace": {
      "command": "uvx",
      "args": [
        "mcp-walmart-marketplace"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add alyiox-mcp-walmart-marketplace -- uvx mcp-walmart-marketplace
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "alyiox-mcp-walmart-marketplace": {
      "type": "local",
      "command": [
        "uvx",
        "mcp-walmart-marketplace"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add alyiox-mcp-walmart-marketplace --command uvx --arg mcp-walmart-marketplace
```

### Hermes

```yaml
mcp_servers:
  alyiox-mcp-walmart-marketplace:
    command: "uvx"
    args: ["mcp-walmart-marketplace"]
```

### Netclaw

```json
{
  "McpServers": {
    "alyiox-mcp-walmart-marketplace": {
      "Transport": "stdio",
      "Command": "uvx",
      "Arguments": [
        "mcp-walmart-marketplace"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add alyiox-mcp-walmart-marketplace -t stdio -c uvx -a mcp-walmart-marketplace
```

### Other

```json
{
  "mcpServers": {
    "alyiox-mcp-walmart-marketplace": {
      "command": "uvx",
      "args": [
        "mcp-walmart-marketplace"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-22 (score 68, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-08-21 (score 53)

First indexed and scored.

## MCP tools (6)

### `list_endpoints` (~114 tokens)

[WalmartMarketplace] List OpenAPI operations with optional filters.

Input parameters:

- `domain`: [WalmartMarketplace] Limit to one API domain, e.g. order-management. Src: specs.
- `method`: [WalmartMarketplace] Filter by HTTP verb — GET, POST, PUT, PATCH, DELETE.
- `query`: [WalmartMarketplace] Case-insensitive substring match on operation id, path, or summary.
- `tag`: [WalmartMarketplace] Filter to operations whose OpenAPI tags include this value.

### `describe_endpoint` (~98 tokens)

[WalmartMarketplace] Describe one OpenAPI operation with its schema closure. Returns the operation plus every components.schemas entry reachable from it, so request bodies and responses can be built without the full spec. Server-managed auth and QoS headers are omitted — do not supply them.

Input parameters:

- `operation_id` (string, required): [WalmartMarketplace] Operation id, qualified as domain:operationId (e.g. order-management:getAllOrders). Src: operations.

### `call_endpoint` (~287 tokens)

[WalmartMarketplace] Execute an authenticated API request. Give operation_id, or method and path together. Auth, WM_MARKET, WM_GLOBAL_VERSION, WM_SANDBOX and correlation headers are added by the server.

Input parameters:

- `advertiser_id` (integer, required): [WalmartMarketplace] Advertiser (seller profile) id to act as. Required — selects the credential. Src: config.
- `body`: [WalmartMarketplace] JSON request body for POST/PUT/PATCH.
- `environment` (string, required): [WalmartMarketplace] Target environment — production or sandbox. Src: config.
- `method`: [WalmartMarketplace] HTTP method. Required unless operation_id is given.
- `operation_id`: [WalmartMarketplace] Operation id as domain:operationId. Resolves method, path, and required headers from the spec. Src: operations.
- `params`: [WalmartMarketplace] Query string parameters as a JSON object.
- `path`: [WalmartMarketplace] API path after the base URL, e.g. /v3/orders. Required unless operation_id is given.
- `path_params`: [WalmartMarketplace] Values for {placeholders} in the path, e.g. {"purchaseOrderId": "1796277083022"}.
- `region` (string, required): [WalmartMarketplace] Region label, e.g. us. Src: config.

Output parameters:

- `body`
- `cached_at`
- `curl`
- `error`
- `status_code`
- `truncated`

### `upload_feed` (~187 tokens)

[WalmartMarketplace] Upload a feed file for a feed type. Posts the local file as multipart/form-data to /v3/feeds and returns the feed id.

Input parameters:

- `advertiser_id` (integer, required): [WalmartMarketplace] Advertiser (seller profile) id to act as. Src: config.
- `environment` (string, required): [WalmartMarketplace] Target environment — production or sandbox. Src: config.
- `feed_type` (string, required): [WalmartMarketplace] Walmart feedType, e.g. MP_ITEM, MP_INVENTORY, RETIRE_ITEM. Valid values are enumerated on each domain's POST /v3/feeds operation. Src: operations.
- `file_path` (string, required): [WalmartMarketplace] Local path of the feed file to upload.
- `region` (string, required): [WalmartMarketplace] Region label, e.g. us. Src: config.

Output parameters:

- `body`
- `cached_at`
- `curl`
- `error`
- `status_code`
- `truncated`

### `download_file` (~260 tokens)

[WalmartMarketplace] Download a report, label, or other binary payload to a local path. Give a full url, or operation_id (or method and path). Follows redirects and drops credentials when a redirect leaves Walmart's host.

Input parameters:

- `advertiser_id` (integer, required): [WalmartMarketplace] Advertiser (seller profile) id to act as. Src: config.
- `dest_path` (string, required): [WalmartMarketplace] Local path to write the downloaded bytes to.
- `environment` (string, required): [WalmartMarketplace] Target environment — production or sandbox. Src: config.
- `method`: [WalmartMarketplace] HTTP method when using path.
- `operation_id`: [WalmartMarketplace] Operation id as domain:operationId. Src: operations.
- `params`: [WalmartMarketplace] Query string parameters.
- `path`: [WalmartMarketplace] API path when not using url.
- `path_params`: [WalmartMarketplace] Values for {placeholders} in path.
- `region` (string, required): [WalmartMarketplace] Region label, e.g. us. Src: config.
- `url`: [WalmartMarketplace] Absolute URL to fetch, e.g. a report URL returned by a previous call.

Output parameters:

- `bytes_written`
- `content_type`
- `error`
- `path`
- `status_code`
- `urls`

### `refresh_specs` (~67 tokens)

[WalmartMarketplace] Refresh bundled OpenAPI specs from the public registry into the user cache, which then takes precedence over the bundled copies.

Input parameters:

- `spec_id`: [WalmartMarketplace] Refresh only this spec, e.g. order-management. Omit to refresh all. Src: specs.

## Diagnostics

Captured diagnostic sections: Provenance, Install scripts, Dependencies. The full working is on the page: https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace#diagnostics

## Score history

- 2026-08-23: 68
- 2026-08-22: 68
- 2026-08-21: 53

## Common questions

### What is the Walmart Marketplace APIs MCP server?

Walmart Marketplace APIs is an MCP server listed in the public MCP registry as io.github.alyiox/mcp-walmart-marketplace. MCP server for Walmart Marketplace APIs (US, 3P seller). This page covers its PyPI package (mcp-walmart-marketplace).

### Is the Walmart Marketplace APIs MCP server safe to use?

Walmart Marketplace APIs scores 68 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 23 August 2026. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Walmart Marketplace APIs MCP server expose?

Walmart Marketplace APIs exposes 6 tools: list_endpoints, describe_endpoint, call_endpoint, upload_feed, download_file, refresh_specs. Their descriptions and schemas cost roughly 1,013 tokens of context every time the server is loaded.

### Is the Walmart Marketplace APIs MCP server still maintained?

Walmart Marketplace APIs is still listed as active in the MCP registry. We last reached this channel on 23 August 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

## Links

- PyPI project: https://pypi.org/project/mcp-walmart-marketplace/
- Socket report: https://socket.dev/pypi/package/mcp-walmart-marketplace
- Repository: https://github.com/alyiox/mcp-walmart-marketplace
- Changelog RSS feed: https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace.xml
- Changelog JSON feed: https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace.json
- HTML version of this page: https://verifymcp.io/servers/alyiox-mcp-walmart-marketplace/mcp-walmart-marketplace
