ergzone-mcp 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +21 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # ergzone-mcp
2
2
 
3
- Unofficial MCP server for [ErgZone](https://www.erg.zone) (Concept2 rowing). Manage workouts, results and stats from your AI assistant. **Zero install, zero dependencies** — runs from GitHub via `npx` (Node ≥ 18).
3
+ [![Release](https://github.com/malveo/ergzone-mcp/actions/workflows/release.yml/badge.svg)](https://github.com/malveo/ergzone-mcp/actions/workflows/release.yml)
4
+ [![npm version](https://img.shields.io/npm/v/ergzone-mcp.svg)](https://www.npmjs.com/package/ergzone-mcp)
5
+ [![license](https://img.shields.io/npm/l/ergzone-mcp.svg)](LICENSE)
6
+
7
+ Unofficial MCP server for [ErgZone](https://www.erg.zone) (Concept2 rowing). Manage workouts, results and stats from your AI assistant. **Zero install, zero dependencies** — runs via `npx` from npm (Node ≥ 18).
4
8
 
5
9
  > Not affiliated with ErgZone / Concept2. Personal use.
6
10
 
@@ -8,23 +12,33 @@ Unofficial MCP server for [ErgZone](https://www.erg.zone) (Concept2 rowing). Man
8
12
 
9
13
  You need a Concept2 Logbook account (the one you use on log.concept2.com).
10
14
 
11
- **Claude Code:**
15
+ ### Claude Desktop — one-click (no terminal)
16
+
17
+ 1. Download `ergzone-mcp.mcpb` from the [latest release](https://github.com/malveo/ergzone-mcp/releases/latest).
18
+ 2. Double-click it (or drag it into Claude Desktop → Settings → Extensions).
19
+ 3. Type your Logbook email and password in the form. Done.
20
+
21
+ Nothing to install — no Node, no terminal, no config files.
22
+
23
+ ### Claude Code (terminal)
12
24
 
13
25
  ```bash
14
26
  claude mcp add ergzone \
15
27
  -e ERGZONE_LOGBOOK_EMAIL=you@example.com \
16
28
  -e ERGZONE_LOGBOOK_PASSWORD=yourpassword \
17
- -- npx -y github:malveo/ergzone-mcp
29
+ -- npx -y ergzone-mcp
18
30
  ```
19
31
 
20
- **Claude Desktop**add to `claude_desktop_config.json`:
32
+ ### Claude Desktop — manual config
33
+
34
+ Add to `claude_desktop_config.json`:
21
35
 
22
36
  ```json
23
37
  {
24
38
  "mcpServers": {
25
39
  "ergzone": {
26
40
  "command": "npx",
27
- "args": ["-y", "github:malveo/ergzone-mcp"],
41
+ "args": ["-y", "ergzone-mcp"],
28
42
  "env": {
29
43
  "ERGZONE_LOGBOOK_EMAIL": "you@example.com",
30
44
  "ERGZONE_LOGBOOK_PASSWORD": "yourpassword"
@@ -65,7 +79,7 @@ Ask in plain language, e.g. *"create an SPM ladder 16 to 30"* or *"analyze my la
65
79
  Auto-login stores your Logbook password and replicates the Logbook sign-in, so it may break if
66
80
  Concept2 changes that page, and automating login may be against their Terms of Service.
67
81
 
68
- Works on macOS, Linux and Windows (Node ≥ 18.7). On Windows the `npx github:...` form needs
69
- [Git](https://git-scm.com) installed; the token cache lives under `%APPDATA%\ergzone-mcp`.
82
+ Works on macOS, Linux and Windows (Node ≥ 18.7). The token cache lives under
83
+ `~/.config/ergzone-mcp` (macOS/Linux) or `%APPDATA%\ergzone-mcp` (Windows).
70
84
 
71
85
  MIT licensed.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ergzone-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "description": "Unofficial MCP server for ErgZone (Concept2 rowing). Zero runtime dependencies.",
5
5
  "type": "module",
6
6
  "bin": {