{ "version": "0.0.0", "name": "@upstash/mcp-server", "mcpName": "io.github.upstash/mcp-server", "description": "MCP server for Upstash", "license": "MIT", "type": "module", "engines": { "node": ">=20" }, "bin": { "mcp-server": "dist/index.js" }, "repository": { "type": "git", "url": "git+https://github.com/upstash/mcp-server.git" }, "bugs": { "url": "https://github.com/upstash/mcp-server/issues" }, "scripts": { "build": "tsup && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", "watch": "bun run build && tsup --watch", "logs": "tail -n 20 -f ~/.claude/debug/latest", "fmt": "prettier --write .", "test": "bun test", "lint": "eslint \"**/*.{js,ts,tsx}\" --quiet --fix && tsc --noEmit", "prepare": "husky" }, "files": [ "dist" ], "devDependencies": { "@types/bun": "^1.3.9", "@typescript-eslint/eslint-plugin": "8.4.0", "@typescript-eslint/parser": "8.4.0", "eslint": "9.10.0", "eslint-plugin-unicorn": "55.0.0", "husky": "^9.1.7", "lint-staged": "^16.3.2", "prettier": "^3.6.2", "tsup": "^8.5.0" }, "lint-staged": { "*.{js,ts,tsx}": [ "prettier --write", "eslint --quiet --fix" ], "*.{json,md,yaml,yml}": [ "prettier --write" ] }, "dependencies": { "@modelcontextprotocol/node": "^2.0.0", "@modelcontextprotocol/server": "^2.0.0", "@types/node": "^20", "chalk": "^5.6.0", "commander": "^14.0.0", "dotenv": "^16.6.1", "zod": "^4.2.0" } }