@atlas-kitchen/atlas-mcp
Version:
Model Context Protocol server for Atlas restaurant management system - enables Claude to interact with restaurant orders, menus, and reports
66 lines (65 loc) • 2 kB
JSON
{
"name": "@atlas-kitchen/atlas-mcp",
"version": "1.3.0",
"description": "Model Context Protocol server for Atlas restaurant management system - enables Claude to interact with restaurant orders, menus, and reports",
"main": "dist/index.js",
"bin": {
"atlas-mcp": "dist/index.js"
},
"files": [
"dist/",
".env.example",
"README.md",
"CLAUDE.md"
],
"engines": {
"node": ">=18.0.0"
},
"engineStrict": true,
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"release": "npm version patch && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"release:minor": "npm version minor && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"release:major": "npm version major && git push && git push --tags && gh release create v$(node -p \"require('./package.json').version\") --generate-notes",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"atlas",
"restaurant",
"graphql",
"claude",
"ai"
],
"author": "Atlas Kitchen",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/atlas-kitchen/atlas-mcp.git"
},
"homepage": "https://github.com/atlas-kitchen/atlas-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"@types/node": "^24.0.10",
"@types/uuid": "^10.0.0",
"dotenv": "^17.0.1",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"uuid": "^11.1.0",
"zod": "^3.25.75"
},
"devDependencies": {
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0"
}
}