UNPKG

mcp-warden-magento

Version:

A Model Context Protocol (MCP) server for Magento 2 operations within Warden environments

81 lines (80 loc) 2.4 kB
{ "name": "mcp-warden-magento", "version": "1.0.0", "type": "module", "description": "A Model Context Protocol (MCP) server for Magento 2 operations within Warden environments", "main": "dist/src/index.js", "bin": { "mcp-warden-magento": "dist/src/index.js" }, "files": [ "dist/src/**/*", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "keywords": [ "mcp", "model-context-protocol", "magento", "warden", "ai", "assistant", "tools" ], "author": "Sean Dearnaley", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/seandearnaley/mcp-warden-magento-ts.git" }, "homepage": "https://github.com/seandearnaley/mcp-warden-magento-ts#readme", "bugs": { "url": "https://github.com/seandearnaley/mcp-warden-magento-ts/issues" }, "scripts": { "dev": "tsx src/index.ts", "build": "npx tsc && npm run postbuild", "postbuild": "chmod +x dist/src/index.js", "start": "node dist/src/index.js", "prepublishOnly": "pnpm run check && pnpm run test && pnpm run build", "publish:dry": "npm publish --dry-run", "lint": "eslint .", "lint:fix": "eslint . --fix", "lint:watch": "eslint . --watch", "format": "prettier --write .", "format:check": "prettier --check .", "check": "pnpm run lint && pnpm run format:check", "test": "vitest run", "test:unit": "vitest run --coverage", "test:e2e": "playwright test", "fix": "pnpm run lint:fix && pnpm run format", "watch": "concurrently \"pnpm run tsc:watch\" \"pnpm run lint:watch\"", "tsc:watch": "tsc --watch --noEmit", "dev:watch": "concurrently \"pnpm run tsc:watch\" \"pnpm run lint:watch\" \"pnpm run dev\"" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.17.4", "winston": "^3.17.0", "zod": "^3.25.76" }, "devDependencies": { "@eslint/js": "^9.34.0", "@playwright/test": "^1.47.2", "@types/node": "^24.3.0", "@typescript-eslint/eslint-plugin": "^8.41.0", "@typescript-eslint/parser": "^8.41.0", "@vitest/coverage-v8": "^3.2.4", "concurrently": "^9.1.0", "eslint": "^9.34.0", "eslint-config-prettier": "^9.1.2", "eslint-plugin-prettier": "^5.5.4", "prettier": "^3.6.2", "tsx": "^4.20.5", "typescript": "^5.9.2", "typescript-eslint": "^8.41.0", "vitest": "^3.2.4" } }