@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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @kalera/munin-runtime@1.2.8 build /home/runner/work/munin-for-agents/munin-for-agents/packages/runtime
2
+ > @kalera/munin-runtime@1.2.9 build /home/runner/work/munin-for-agents/munin-for-agents/packages/runtime
3
3
  > tsc -p tsconfig.json
4
4
 
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
@@ -14,7 +14,7 @@ export function createMcpServerInstance(env, opts) {
14
14
  });
15
15
  const server = new Server({
16
16
  name: "munin-mcp-server",
17
- version: "1.0.0",
17
+ version: "1.2.9",
18
18
  }, {
19
19
  capabilities: {
20
20
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalera/munin-runtime",
3
- "version": "1.2.8",
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.8"
15
+ "@kalera/munin-sdk": "1.2.9"
16
16
  },
17
17
  "scripts": {
18
18
  "build": "tsc -p tsconfig.json",
package/src/mcp-server.ts CHANGED
@@ -26,7 +26,7 @@ export function createMcpServerInstance(
26
26
  const server = new Server(
27
27
  {
28
28
  name: "munin-mcp-server",
29
- version: "1.0.0",
29
+ version: "1.2.9",
30
30
  },
31
31
  {
32
32
  capabilities: {