PluginBench
MCP Server

Hevy MCP (Remote) MCP Server

io.github.rwestergren/hevy-mcp-remote

What is the Hevy MCP (Remote) MCP server?

Hosted/gateway-ready Hevy fitness MCP: workouts, routines, templates.

How to install Hevy MCP (Remote)

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • HEVY_API_KEY
    required
    secret

    Hevy API key (requires Hevy PRO). Get one in the Hevy app under Settings -> Developer.

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "hevy-mcp-remote": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rwestergren/hevy-mcp:0.1.6",
        "-p",
        "8080:8080",
        "-e",
        "HEVY_API_KEY={HEVY_API_KEY}"
      ],
      "env": {
        "HEVY_API_KEY": "<YOUR_HEVY_API_KEY>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "hevy-mcp-remote": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rwestergren/hevy-mcp:0.1.6",
        "-p",
        "8080:8080",
        "-e",
        "HEVY_API_KEY={HEVY_API_KEY}"
      ],
      "env": {
        "HEVY_API_KEY": "<YOUR_HEVY_API_KEY>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "hevy-mcp-remote": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rwestergren/hevy-mcp:0.1.6",
        "-p",
        "8080:8080",
        "-e",
        "HEVY_API_KEY={HEVY_API_KEY}"
      ],
      "env": {
        "HEVY_API_KEY": "<YOUR_HEVY_API_KEY>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "hevy-mcp-remote": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/rwestergren/hevy-mcp:0.1.6",
        "-p",
        "8080:8080",
        "-e",
        "HEVY_API_KEY={HEVY_API_KEY}"
      ],
      "env": {
        "HEVY_API_KEY": "<YOUR_HEVY_API_KEY>"
      }
    }
  }
}
Claude Code
claude mcp add hevy-mcp-remote --env HEVY_API_KEY=<YOUR_HEVY_API_KEY> -- docker run -i --rm ghcr.io/rwestergren/hevy-mcp:0.1.6 -p 8080:8080 -e HEVY_API_KEY={HEVY_API_KEY}

Related MCP servers

MCP server for Cronometer nutrition tracking — food logs, diary, macros, fasting

View repository →

MCP server for InBody body-composition data — scans, body fat, muscle mass, body water

View repository →

MCP server for Rachio sprinkler controllers — schedules, zones, and live watering control

View repository →