
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@taskingagency/mcp-shopify
Advanced tools
Model Context Protocol (MCP) server for Shopify inventory and sales management. Provides read-only access to Shopify products and orders through standardized MCP tools.
✅ Read-only operations - GET/LIST endpoints only (no create, update, or delete) ✅ Inventory management - Get products, list items, count total inventory ✅ Sales tracking - Get orders, list sales, calculate total revenue ✅ Multiple transports - Supports stdio, SSE, and HTTP streaming ✅ Smart caching - Built-in cache with 1-3 second delays to prevent API rate limiting ✅ Comprehensive logging - Detailed error messages with HTTP status explanations ✅ Secure - API keys masked in logs, environment-based configuration
npm install
npm run build
Create a .env file based on .env.example:
# Required: Get from Shopify Admin > Settings > Apps and sales channels > Develop apps
SHOPIFY_APP_CLIENT_ID="your_client_id"
SHOPIFY_APP_SECRET="shpss_your_secret"
SHOPIFY_APP_ENDPOINT="https://your-store.myshopify.com/admin/api/2025-10/graphql.json"
# Optional: Store settings
STORE_COUNTRY=IS
STORE_CURRENCY=ISK
STORE_LOCALE=is-IS
# Optional: HTTP server settings
HTTP_PORT=3022
HTTP_SERVER=localhost
You can override environment variables via CLI arguments:
node dist/http-server.js --api-key shpss_xxx --port 3001 --endpoint https://...
Priority: CLI args > env vars > .env file
# Run directly
node dist/index.js
# Test with MCP Inspector
npm run inspector:stdio
# or
npx @modelcontextprotocol/inspector node dist/index.js
# Start HTTP server
node dist/http-server.js
# Test with MCP Inspector
npm run inspector:http
# or
npx @modelcontextprotocol/inspector http://localhost:3022/sse
curl http://localhost:3022/health
# Build
npm run build
# Watch mode
npm run watch
# Run tests
npm test # Run all tests once
npm run test:watch # Watch mode
npm run test:ui # Interactive UI
npm run test:coverage # With coverage report
# Enable debug logging
DEBUG=true node dist/index.js
The project includes comprehensive tests covering:
Run tests with: npm test
See TEST_SUMMARY.md for detailed test documentation.
{
"name": "get_item",
"arguments": {
"id": "gid://shopify/Product/123456789"
}
}
{
"name": "list_items",
"arguments": {
"limit": 10,
"query": "status:active"
}
}
{
"name": "total_items",
"arguments": {}
}
{
"name": "list_sales",
"arguments": {
"limit": 20,
"query": "financial_status:paid"
}
}
{
"name": "total_sales",
"arguments": {}
}
src/
├── config/
│ └── env.ts # Environment configuration with CLI args
├── utils/
│ └── logger.ts # Logging utility with API key masking
├── shopify/
│ ├── client.ts # GraphQL client with error handling
│ ├── queries.ts # GraphQL query definitions
│ └── cache-wrapper.ts # Caching with random delays
├── server/
│ ├── mcp-server.ts # Core MCP server setup
│ └── tools.ts # Tool handlers (6 endpoints)
├── index.ts # Stdio transport entry
└── http-server.ts # HTTP/SSE transport entry
The server provides detailed error messages with HTTP status explanations:
The built-in cache wrapper adds random 1-3 second delays between API calls to prevent overwhelming the Shopify API. Cache TTL:
ISC
For issues and feature requests, visit: https://github.com/modellers/mcp-shopify/issues
FAQs
MCP server for Shopify inventory and sales management
The npm package @taskingagency/mcp-shopify receives a total of 1 weekly downloads. As such, @taskingagency/mcp-shopify popularity was classified as not popular.
We found that @taskingagency/mcp-shopify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.