ergzone-mcp 1.0.0 → 1.0.1
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.
- package/README.md +9 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# ergzone-mcp
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://github.com/malveo/ergzone-mcp/actions/workflows/release.yml)
|
|
4
|
+
[](https://www.npmjs.com/package/ergzone-mcp)
|
|
5
|
+
[](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
|
|
|
@@ -14,7 +18,7 @@ You need a Concept2 Logbook account (the one you use on log.concept2.com).
|
|
|
14
18
|
claude mcp add ergzone \
|
|
15
19
|
-e ERGZONE_LOGBOOK_EMAIL=you@example.com \
|
|
16
20
|
-e ERGZONE_LOGBOOK_PASSWORD=yourpassword \
|
|
17
|
-
-- npx -y
|
|
21
|
+
-- npx -y ergzone-mcp
|
|
18
22
|
```
|
|
19
23
|
|
|
20
24
|
**Claude Desktop** — add to `claude_desktop_config.json`:
|
|
@@ -24,7 +28,7 @@ claude mcp add ergzone \
|
|
|
24
28
|
"mcpServers": {
|
|
25
29
|
"ergzone": {
|
|
26
30
|
"command": "npx",
|
|
27
|
-
"args": ["-y", "
|
|
31
|
+
"args": ["-y", "ergzone-mcp"],
|
|
28
32
|
"env": {
|
|
29
33
|
"ERGZONE_LOGBOOK_EMAIL": "you@example.com",
|
|
30
34
|
"ERGZONE_LOGBOOK_PASSWORD": "yourpassword"
|
|
@@ -65,7 +69,7 @@ Ask in plain language, e.g. *"create an SPM ladder 16 to 30"* or *"analyze my la
|
|
|
65
69
|
Auto-login stores your Logbook password and replicates the Logbook sign-in, so it may break if
|
|
66
70
|
Concept2 changes that page, and automating login may be against their Terms of Service.
|
|
67
71
|
|
|
68
|
-
Works on macOS, Linux and Windows (Node ≥ 18.7).
|
|
69
|
-
|
|
72
|
+
Works on macOS, Linux and Windows (Node ≥ 18.7). The token cache lives under
|
|
73
|
+
`~/.config/ergzone-mcp` (macOS/Linux) or `%APPDATA%\ergzone-mcp` (Windows).
|
|
70
74
|
|
|
71
75
|
MIT licensed.
|