@keepgoingdev/mcp-server 0.1.0 → 0.1.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 +37 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# @keepgoingdev/mcp-server
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server for [KeepGoing.dev](https://keepgoing.dev), providing developer momentum tools for AI coding assistants like Claude Code.
|
|
4
|
+
|
|
5
|
+
## What it does
|
|
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.
|
|
8
|
+
|
|
9
|
+
### Tools
|
|
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
|
|
14
|
+
|
|
15
|
+
## Setup with Claude Code
|
|
16
|
+
|
|
17
|
+
Add to your Claude Code MCP config (`~/.claude/claude_code_config.json`):
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"keepgoing": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["-y", "@keepgoingdev/mcp-server"]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Requirements
|
|
31
|
+
|
|
32
|
+
- KeepGoing VS Code extension installed and active (creates `.keepgoing/` session data)
|
|
33
|
+
- Node.js 18+
|
|
34
|
+
|
|
35
|
+
## License
|
|
36
|
+
|
|
37
|
+
MIT
|