@kalera/munin-claude 1.0.0 → 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/.turbo/turbo-build.log +1 -1
- package/README.md +11 -2
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
package/README.md
CHANGED
|
@@ -11,10 +11,19 @@
|
|
|
11
11
|
import { createClaudeCodeMuninAdapter } from "@kalera/munin-claude";
|
|
12
12
|
|
|
13
13
|
const adapter = createClaudeCodeMuninAdapter({
|
|
14
|
-
baseUrl: process.env.MUNIN_BASE_URL!,
|
|
15
14
|
apiKey: process.env.MUNIN_API_KEY,
|
|
16
|
-
project: process.env.MUNIN_PROJECT ?? "default",
|
|
15
|
+
project: process.env.MUNIN_PROJECT ?? "default-core",
|
|
17
16
|
});
|
|
18
17
|
|
|
19
18
|
await adapter.execute("search", { query: "ecosystem" });
|
|
20
19
|
```
|
|
20
|
+
|
|
21
|
+
## Setup as MCP Server
|
|
22
|
+
|
|
23
|
+
To use this adapter as a standard MCP server in Claude Desktop or other clients:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
export MUNIN_API_KEY="your-api-key"
|
|
27
|
+
export MUNIN_PROJECT="your-context-core-id"
|
|
28
|
+
npx -y @kalera/munin-claude mcp
|
|
29
|
+
```
|
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kalera/munin-claude",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"munin-claude": "dist/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@kalera/munin-sdk": "1.0.
|
|
10
|
-
"@kalera/munin-runtime": "1.0.
|
|
9
|
+
"@kalera/munin-sdk": "1.0.2",
|
|
10
|
+
"@kalera/munin-runtime": "1.0.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"typescript": "^5.9.2"
|