@kalera/munin-runtime 1.2.8 → 1.2.9
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/.turbo/turbo-build.log +1 -1
- package/README.md +58 -0
- package/dist/mcp-server.js +1 -1
- package/package.json +2 -2
- package/src/mcp-server.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# @kalera/munin-runtime
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server runtime for Munin Context Core. Works with any MCP-compatible client (Claude Code, Cursor, etc.).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @kalera/munin-runtime
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Available Tools
|
|
12
|
+
|
|
13
|
+
| Tool | Description |
|
|
14
|
+
|------|-------------|
|
|
15
|
+
| `munin_store_memory` | Store or update a memory |
|
|
16
|
+
| `munin_retrieve_memory` | Retrieve a memory by key |
|
|
17
|
+
| `munin_search_memories` | Semantic/keyword search |
|
|
18
|
+
| `munin_list_memories` | List all memories (paginated) |
|
|
19
|
+
| `munin_recent_memories` | Most recently updated memories |
|
|
20
|
+
| `munin_share_memory` | Share memories across projects |
|
|
21
|
+
| `munin_get_project_info` | Get project metadata and E2EE status |
|
|
22
|
+
|
|
23
|
+
## Environment Variables
|
|
24
|
+
|
|
25
|
+
| Variable | Required | Description |
|
|
26
|
+
|----------|----------|-------------|
|
|
27
|
+
| `MUNIN_API_KEY` | Yes | Your Munin API key |
|
|
28
|
+
| `MUNIN_PROJECT` | Yes* | Active project ID (*or pass as tool arg) |
|
|
29
|
+
| `MUNIN_BASE_URL` | No | Default: `https://munin.kalera.dev` |
|
|
30
|
+
| `MUNIN_TIMEOUT_MS` | No | Request timeout (default: 15000) |
|
|
31
|
+
| `MUNIN_ENCRYPTION_KEY` | No | Encryption key for E2EE projects |
|
|
32
|
+
|
|
33
|
+
## Usage as MCP Server
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
MUNIN_API_KEY=your-key MUNIN_PROJECT=your-project npx @kalera/munin-runtime
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Claude Code Integration
|
|
40
|
+
|
|
41
|
+
Configure in your `~/.claude/settings.json`:
|
|
42
|
+
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"pluginConfigs": {
|
|
46
|
+
"munin": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["@kalera/munin-runtime"]
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Set required env vars in your project's `.env` or `.env.local`.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT
|
package/dist/mcp-server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kalera/munin-runtime",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
15
|
-
"@kalera/munin-sdk": "1.2.
|
|
15
|
+
"@kalera/munin-sdk": "1.2.9"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "tsc -p tsconfig.json",
|