zep-mcp 1.0.2
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/.installed-sha +1 -0
- package/README.md +32 -0
- package/index.js +1611 -0
- package/package.json +15 -0
package/.installed-sha
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
92ae3dabc1e1fd412e95f8d3b41446c49f4c279d
|
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# zep-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for ZEP time tracking (zep-online.de). Browser-based via Puppeteer, no API key needed.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g git+ssh://git@github.com/rui-branco/zep-mcp.git
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Auto-Update
|
|
12
|
+
|
|
13
|
+
The server auto-updates on startup. It checks the latest commit on GitHub and if a newer version is available, it runs `npm install -g` from the repo in the background. The update takes effect on the next restart.
|
|
14
|
+
|
|
15
|
+
## Claude Code Configuration
|
|
16
|
+
|
|
17
|
+
Add to your Claude Code MCP settings:
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"mcpServers": {
|
|
22
|
+
"zep": {
|
|
23
|
+
"command": "zep-mcp"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Dependencies
|
|
30
|
+
|
|
31
|
+
- Node.js 22+
|
|
32
|
+
- Google Chrome (used by Puppeteer for browser automation)
|