Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,36 @@ If you have an existing custom app with a static `shpat_` access token, you can
}
```

**Optional local guardrail:**

To inspect tool-call arguments locally before they reach the Shopify MCP server,
wrap the command with [Armorer Guard](https://github.com/ArmorerLabs/Armorer-Guard):

```json
{
"mcpServers": {
"shopify": {
"command": "armorer-guard",
"args": [
"mcp-proxy",
"--",
"npx",
"shopify-mcp",
"--clientId",
"<YOUR_CLIENT_ID>",
"--clientSecret",
"<YOUR_CLIENT_SECRET>",
"--domain",
"<YOUR_SHOP>.myshopify.com"
]
}
}
}
```

Armorer Guard runs locally and forwards safe MCP calls unchanged while blocking
prompt injection, credential leakage, exfiltration risk, and dangerous actions.

**Static Access Token (legacy):**

```json
Expand Down