{ "name": "@diecoscai/hevy-mcp", "version": "0.5.0", "description": "Model Context Protocol server for the Hevy fitness API — schemas generated from Hevy's OpenAPI spec, dry-run-safe writes, one-command setup. Workouts, routines, exercises, body measurements.", "type": "module", "bin": { "hevy-mcp": "dist/index.js" }, "files": [ "dist/**", "docs/**", "!docs/plans/**", "!docs/features/**", "README.md", "LICENSE", "CHANGELOG.md", "CONTRIBUTING.md" ], "engines": { "node": ">=20" }, "keywords": [ "mcp", "model-context-protocol", "hevy", "fitness", "workout", "tracker", "api" ], "repository": { "type": "git", "url": "git+https://github.com/diecoscai/hevy-mcp.git" }, "homepage": "https://github.com/diecoscai/hevy-mcp#readme", "bugs": { "url": "https://github.com/diecoscai/hevy-mcp/issues" }, "author": "Diego Iscai", "license": "MIT", "publishConfig": { "access": "public", "provenance": true }, "mcpName": "io.github.diecoscai/hevy-mcp", "scripts": { "build": "tsc && chmod +x dist/index.js", "start": "node dist/index.js", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage", "lint": "biome lint src tests", "format": "biome format --write src tests", "check": "biome check src tests", "generate": "kubb generate --config kubb.config.ts", "fetch-spec": "node scripts/fetch-spec.mjs", "smoke": "bash scripts/smoke.sh", "inspect": "npx -y @modelcontextprotocol/inspector node dist/index.js", "prepublishOnly": "npm run build && npm test && npm run lint" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "zod": "^4.3.6" }, "devDependencies": { "@biomejs/biome": "^2.4.12", "@kubb/cli": "^4.37.8", "@kubb/core": "^4.37.8", "@kubb/plugin-oas": "^4.37.8", "@kubb/plugin-zod": "^4.37.8", "@types/node": "^25.9.1", "@vitest/coverage-v8": "^4.1.4", "ajv": "^8.18.0", "ajv-formats": "^3.0.1", "nock": "^14.0.12", "typescript": "^6.0.3", "vitest": "^4.1.4" }, "overrides": { "qs": "^6.15.2", "ws": "^8.20.1" } }