@kalera/munin-mcp-server 1.2.0 → 1.2.7

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.
@@ -0,0 +1,149 @@
1
+ {
2
+ "payload": {
3
+ "type": "hosted",
4
+ "stateful": false,
5
+ "hasAuthAdapter": false,
6
+ "serverCard": {
7
+ "serverInfo": {
8
+ "name": "munin-mcp-server",
9
+ "version": "1.0.0"
10
+ },
11
+ "tools": [
12
+ {
13
+ "name": "munin_store_memory",
14
+ "description": "Store or update a memory in Munin Context Core. It will automatically use the active project from environment if projectId is omitted. IMPORTANT: Call this as an MCP tool, NOT as a shell command.",
15
+ "inputSchema": {
16
+ "type": "object",
17
+ "properties": {
18
+ "projectId": {
19
+ "type": "string",
20
+ "description": "Optional. Only use if cross-saving to a different Context Core ID."
21
+ },
22
+ "key": {
23
+ "type": "string",
24
+ "description": "Unique identifier for this memory"
25
+ },
26
+ "content": {
27
+ "type": "string",
28
+ "description": "The content to remember"
29
+ },
30
+ "title": {
31
+ "type": "string",
32
+ "description": "Optional title"
33
+ },
34
+ "tags": {
35
+ "type": "array",
36
+ "items": {
37
+ "type": "string"
38
+ },
39
+ "description": "List of tags, e.g. ['planning', 'frontend']"
40
+ }
41
+ },
42
+ "required": [
43
+ "key",
44
+ "content"
45
+ ]
46
+ }
47
+ },
48
+ {
49
+ "name": "munin_retrieve_memory",
50
+ "description": "Retrieve a memory by its unique key from the current Munin Context Core. IMPORTANT: Call this as an MCP tool, NOT as a shell command.",
51
+ "inputSchema": {
52
+ "type": "object",
53
+ "properties": {
54
+ "projectId": {
55
+ "type": "string",
56
+ "description": "Optional. The Munin Context Core ID."
57
+ },
58
+ "key": {
59
+ "type": "string",
60
+ "description": "Unique identifier"
61
+ }
62
+ },
63
+ "required": [
64
+ "key"
65
+ ]
66
+ }
67
+ },
68
+ {
69
+ "name": "munin_search_memories",
70
+ "description": "Search for memories using semantic search or keywords. Returns formatted, token-efficient GraphRAG context. IMPORTANT: Call this as an MCP tool, NOT as a shell command.",
71
+ "inputSchema": {
72
+ "type": "object",
73
+ "properties": {
74
+ "projectId": {
75
+ "type": "string",
76
+ "description": "Optional. The Munin Context Core ID."
77
+ },
78
+ "query": {
79
+ "type": "string",
80
+ "description": "Search query"
81
+ },
82
+ "tags": {
83
+ "type": "array",
84
+ "items": {
85
+ "type": "string"
86
+ }
87
+ },
88
+ "limit": {
89
+ "type": "number",
90
+ "description": "Max results (default: 10)"
91
+ }
92
+ },
93
+ "required": [
94
+ "query"
95
+ ]
96
+ }
97
+ },
98
+ {
99
+ "name": "munin_list_memories",
100
+ "description": "List all memories with pagination. IMPORTANT: Call this as an MCP tool, NOT as a shell command.",
101
+ "inputSchema": {
102
+ "type": "object",
103
+ "properties": {
104
+ "projectId": {
105
+ "type": "string",
106
+ "description": "Optional. The Munin Context Core ID."
107
+ },
108
+ "limit": {
109
+ "type": "number"
110
+ },
111
+ "offset": {
112
+ "type": "number"
113
+ }
114
+ },
115
+ "required": []
116
+ }
117
+ },
118
+ {
119
+ "name": "munin_recent_memories",
120
+ "description": "Get the most recently updated memories. IMPORTANT: Call this as an MCP tool, NOT as a shell command.",
121
+ "inputSchema": {
122
+ "type": "object",
123
+ "properties": {
124
+ "projectId": {
125
+ "type": "string",
126
+ "description": "Optional. The Munin Context Core ID."
127
+ },
128
+ "limit": {
129
+ "type": "number"
130
+ }
131
+ },
132
+ "required": []
133
+ }
134
+ }
135
+ ],
136
+ "resources": [],
137
+ "prompts": []
138
+ },
139
+ "source": {
140
+ "commit": "5e93ebc73501d5b658fef628737c489ce736f5f4",
141
+ "branch": "main"
142
+ }
143
+ },
144
+ "artifacts": {
145
+ "module": "module.js",
146
+ "sourcemap": "module.js.map"
147
+ },
148
+ "name": "munin-ai-memory"
149
+ }