@naumu/mcp 0.1.0 → 0.1.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/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
# naumu
|
|
1
|
+
# @naumu/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for [Naumu](https://naumu.
|
|
3
|
+
MCP server for [Naumu](https://naumu.ai) — access your knowledge graph from Claude Code, Cursor, and other AI coding agents.
|
|
4
4
|
|
|
5
5
|
## Setup
|
|
6
6
|
|
|
@@ -15,7 +15,7 @@ Generate an API key from your Naumu account settings.
|
|
|
15
15
|
```bash
|
|
16
16
|
claude mcp add naumu -s user \
|
|
17
17
|
-e NAUMU_API_KEY=nmu_your_key_here \
|
|
18
|
-
-- npx -y naumu-mcp
|
|
18
|
+
-- npx -y -p @naumu/mcp naumu-mcp
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
#### Cursor
|
|
@@ -27,7 +27,7 @@ Add to your Cursor MCP settings:
|
|
|
27
27
|
"mcpServers": {
|
|
28
28
|
"naumu": {
|
|
29
29
|
"command": "npx",
|
|
30
|
-
"args": ["-y", "naumu-mcp
|
|
30
|
+
"args": ["-y", "-p", "@naumu/mcp", "naumu-mcp"],
|
|
31
31
|
"env": {
|
|
32
32
|
"NAUMU_API_KEY": "nmu_your_key_here"
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naumu/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "MCP server for Naumu – access your knowledge graph from Claude Code, Cursor, and other AI coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"author": "Naumu <hello@naumu.
|
|
6
|
+
"author": "Naumu <hello@naumu.ai>",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/naumu-app/naumu",
|
|
10
10
|
"directory": "packages/mcp"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://naumu.
|
|
12
|
+
"homepage": "https://naumu.ai",
|
|
13
13
|
"bugs": "https://github.com/naumu-app/naumu/issues",
|
|
14
14
|
"keywords": [
|
|
15
15
|
"mcp",
|