@keepgoingdev/mcp-server 0.5.2 → 0.5.3

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 +47 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,20 +1,20 @@
1
1
  # @keepgoingdev/mcp-server
2
2
 
3
- MCP (Model Context Protocol) server for [KeepGoing.dev](https://keepgoing.dev), providing developer momentum tools for AI coding assistants like Claude Code.
3
+ MCP server for [KeepGoing.dev](https://keepgoing.dev) that gives AI coding assistants persistent project memory.
4
4
 
5
- ## What it does
5
+ KeepGoing auto-captures checkpoints (what you were doing, what's next, which files matter) on git commits, branch switches, and inactivity. When you start a new session, your AI assistant reads your last context instead of re-inferring everything from scratch. Local-first, no account required.
6
6
 
7
- KeepGoing tracks your coding sessions and helps you pick up where you left off. This MCP server exposes that data to AI assistants so they can understand your recent work context.
7
+ ## Quick Setup
8
8
 
9
- ### Tools
9
+ ### Claude Code
10
10
 
11
- - **`get_momentum`** - Get your last checkpoint, next step, blockers, and branch context
12
- - **`get_session_history`** - Get recent session checkpoints in chronological order
13
- - **`get_reentry_briefing`** - Get a synthesized re-entry briefing with focus, recent activity, and suggested next steps
11
+ ```bash
12
+ claude mcp add keepgoing -- npx -y @keepgoingdev/mcp-server
13
+ ```
14
14
 
15
- ## Setup with Claude Code
15
+ ### Manual config
16
16
 
17
- Add to your Claude Code MCP config (`~/.claude/claude_code_config.json`):
17
+ Add to your MCP config (e.g., `~/.claude/claude_code_config.json`):
18
18
 
19
19
  ```json
20
20
  {
@@ -27,11 +27,48 @@ Add to your Claude Code MCP config (`~/.claude/claude_code_config.json`):
27
27
  }
28
28
  ```
29
29
 
30
+ ## Tools
31
+
32
+ ### Core
33
+
34
+ | Tool | Description |
35
+ |------|-------------|
36
+ | `get_momentum` | Get your last checkpoint, next step, blockers, and branch context. Quick snapshot of where you left off. |
37
+ | `get_reentry_briefing` | Get a synthesized re-entry briefing with focus, recent activity, and suggested next steps. |
38
+ | `get_session_history` | Get recent session checkpoints in chronological order. Supports branch filtering and configurable limit. |
39
+ | `get_current_task` | Get current live session tasks. Shows all active AI agent sessions, what each is doing, and next steps. |
40
+ | `save_checkpoint` | Save a development checkpoint after completing a task or meaningful piece of work. |
41
+ | `setup_project` | Set up KeepGoing in the current project. Adds session hooks and CLAUDE.md instructions for automatic checkpoints. |
42
+
43
+ ### Pro
44
+
45
+ | Tool | Description |
46
+ |------|-------------|
47
+ | `get_decisions` | Get recent high-signal commits with their category, confidence, and rationale. |
48
+ | `activate_license` | Activate a KeepGoing Pro license on this device. |
49
+ | `deactivate_license` | Deactivate the KeepGoing Pro license on this device. |
50
+
51
+ ## How It Works
52
+
53
+ 1. **Install the [KeepGoing VS Code extension](https://marketplace.visualstudio.com/items?itemName=keepgoing.keepgoing)** to capture session data automatically
54
+ 2. **Add this MCP server** to your AI coding assistant (Claude Code, Cursor, Windsurf, etc.)
55
+ 3. **Start coding.** Checkpoints are saved on git commits, branch switches, and periods of inactivity
56
+ 4. **Come back anytime.** Your AI assistant calls `get_momentum` or `get_reentry_briefing` to pick up exactly where you left off
57
+
58
+ All data is stored locally in a `.keepgoing/` directory at your git root.
59
+
30
60
  ## Requirements
31
61
 
32
- - KeepGoing VS Code extension installed and active (creates `.keepgoing/` session data)
62
+ - [KeepGoing VS Code extension](https://marketplace.visualstudio.com/items?itemName=keepgoing.keepgoing) installed and active
33
63
  - Node.js 18+
34
64
 
65
+ ## Links
66
+
67
+ - [Website](https://keepgoing.dev)
68
+ - [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=keepgoing.keepgoing)
69
+ - [npm](https://www.npmjs.com/package/@keepgoingdev/mcp-server)
70
+ - [Issues & Feedback](https://github.com/keepgoing-dev/community)
71
+
35
72
  ## License
36
73
 
37
74
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keepgoingdev/mcp-server",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {