Shopify MCP Server

by rezapex
Verified
{ "name": "shopify-mcp-server", "version": "1.0.1", "main": "index.js", "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:watch": "npm test -- --watch", "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", "build:watch": "tsc --watch", "start": "node build/index.js", "dev": "tsc-watch --onSuccess \"node build/index.js\"", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "prepare": "husky install", "check-types": "tsc --noEmit" }, "keywords": [ "shopify", "api", "mcp", "server", "graphql" ], "author": "Amir Bengherbi", "license": "MIT", "description": "MCP Server for Shopify API, enabling interaction with store data through GraphQL API.", "dependencies": { "@modelcontextprotocol/sdk": "^1.4.1", "graphql-request": "^7.1.2", "zod": "^3.24.1" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^22.10.10", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "dotenv": "^16.4.7", "eslint": "^8.57.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.3", "husky": "^9.0.11", "jest": "^29.7.0", "lint-staged": "^15.2.2", "prettier": "^3.2.5", "ts-jest": "^29.2.5", "tsc-watch": "^6.0.4", "typescript": "^5.7.3" }, "type": "module", "files": [ "build" ], "bin": { "shopify-mcp-server": "./build/index.js" }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }