@keepgoingdev/mcp-server 0.5.2 → 0.5.4
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 +47 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# @keepgoingdev/mcp-server
|
|
2
2
|
|
|
3
|
-
MCP
|
|
3
|
+
MCP server for [KeepGoing.dev](https://keepgoing.dev) that gives AI coding assistants persistent project memory.
|
|
4
4
|
|
|
5
|
-
|
|
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
|
-
|
|
7
|
+
## Quick Setup
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### Claude Code
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
```bash
|
|
12
|
+
claude mcp add keepgoing -- npx -y @keepgoingdev/mcp-server
|
|
13
|
+
```
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
### Manual config
|
|
16
16
|
|
|
17
|
-
Add to your
|
|
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
|
+
| `save_checkpoint` | Save a development checkpoint after completing a task or meaningful piece of work. |
|
|
40
|
+
| `setup_project` | Set up KeepGoing in the current project. Adds session hooks and CLAUDE.md instructions for automatic checkpoints. |
|
|
41
|
+
|
|
42
|
+
### Paid Add-ons
|
|
43
|
+
|
|
44
|
+
| Tool | Add-on | Description |
|
|
45
|
+
|------|--------|-------------|
|
|
46
|
+
| `get_decisions` | Decision Detection | Get recent high-signal commits with their category, confidence, and rationale. |
|
|
47
|
+
| `get_current_task` | Session Awareness | Get current live session tasks across multiple concurrent AI agent sessions. |
|
|
48
|
+
| `activate_license` | | Activate a KeepGoing license on this device. |
|
|
49
|
+
| `deactivate_license` | | Deactivate the KeepGoing 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
|
|
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
|