@naumu/mcp 0.11.0 → 0.12.0
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/README.md +176 -34
- package/dist/index.js +546 -128
- package/package.json +8 -7
- package/server.json +58 -0
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naumu/mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for Naumu
|
|
3
|
+
"version": "0.12.0",
|
|
4
|
+
"description": "MCP server for Naumu - access your knowledge graph from Claude Code, Cursor, and other AI coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Naumu <hello@naumu.ai>",
|
|
7
|
+
"mcpName": "ai.naumu/mcp",
|
|
7
8
|
"repository": {
|
|
8
9
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/naumu-
|
|
10
|
-
"directory": "packages/mcp"
|
|
10
|
+
"url": "https://github.com/naumu-ai/mcp"
|
|
11
11
|
},
|
|
12
12
|
"homepage": "https://naumu.ai",
|
|
13
|
-
"bugs": "https://github.com/naumu-
|
|
13
|
+
"bugs": "https://github.com/naumu-ai/mcp/issues",
|
|
14
14
|
"keywords": [
|
|
15
15
|
"mcp",
|
|
16
16
|
"model-context-protocol",
|
|
@@ -22,13 +22,14 @@
|
|
|
22
22
|
"knowledge-management"
|
|
23
23
|
],
|
|
24
24
|
"bin": {
|
|
25
|
-
"naumu-mcp": "
|
|
25
|
+
"naumu-mcp": "dist/index.js"
|
|
26
26
|
},
|
|
27
27
|
"main": "dist/index.js",
|
|
28
28
|
"type": "module",
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
-
"README.md"
|
|
31
|
+
"README.md",
|
|
32
|
+
"server.json"
|
|
32
33
|
],
|
|
33
34
|
"engines": {
|
|
34
35
|
"node": ">=18"
|
package/server.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "ai.naumu/mcp",
|
|
4
|
+
"title": "Naumu",
|
|
5
|
+
"description": "Search, extend, and act on your team's Naumu knowledge graph: notes, threads, and nodes.",
|
|
6
|
+
"version": "0.12.0",
|
|
7
|
+
"websiteUrl": "https://naumu.ai",
|
|
8
|
+
"repository": {
|
|
9
|
+
"url": "https://github.com/naumu-ai/mcp",
|
|
10
|
+
"source": "github"
|
|
11
|
+
},
|
|
12
|
+
"icons": [
|
|
13
|
+
{
|
|
14
|
+
"src": "https://cdn.naumu.ai/brand/icon-256.png",
|
|
15
|
+
"mimeType": "image/png",
|
|
16
|
+
"sizes": ["256x256"]
|
|
17
|
+
}
|
|
18
|
+
],
|
|
19
|
+
"remotes": [
|
|
20
|
+
{
|
|
21
|
+
"type": "streamable-http",
|
|
22
|
+
"url": "https://naumu.ai/api/mcp"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
25
|
+
"packages": [
|
|
26
|
+
{
|
|
27
|
+
"registryType": "npm",
|
|
28
|
+
"registryBaseUrl": "https://registry.npmjs.org",
|
|
29
|
+
"identifier": "@naumu/mcp",
|
|
30
|
+
"version": "0.12.0",
|
|
31
|
+
"runtimeHint": "npx",
|
|
32
|
+
"transport": { "type": "stdio" },
|
|
33
|
+
"environmentVariables": [
|
|
34
|
+
{
|
|
35
|
+
"name": "NAUMU_API_KEY",
|
|
36
|
+
"description": "Naumu API key (starts with nmu_), created in Naumu under Settings > Your agents.",
|
|
37
|
+
"isRequired": true,
|
|
38
|
+
"isSecret": true,
|
|
39
|
+
"format": "string"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"name": "NAUMU_API_URL",
|
|
43
|
+
"description": "Override the Naumu API base URL. Defaults to https://naumu.ai.",
|
|
44
|
+
"isRequired": false,
|
|
45
|
+
"isSecret": false,
|
|
46
|
+
"format": "string"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"name": "NAUMU_IDENTITY_ID",
|
|
50
|
+
"description": "Optional bot identity id to act as when the key covers several identities.",
|
|
51
|
+
"isRequired": false,
|
|
52
|
+
"isSecret": false,
|
|
53
|
+
"format": "string"
|
|
54
|
+
}
|
|
55
|
+
]
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
}
|