taru-mcp 0.1.2 → 0.1.3

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.
Files changed (2) hide show
  1. package/README.md +14 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,18 +9,26 @@ Zero dependencies. Pure Node.js. Works with any MCP client.
9
9
  ### Claude Code
10
10
 
11
11
  ```bash
12
- claude mcp add taru -- npx -y taru-mcp --token xxv_your_token
12
+ # 1. Install the package
13
+ npm install taru-mcp
13
14
 
14
- # Copy the agent instructions to your project
15
+ # 2. Register MCP server
16
+ claude mcp add taru -- npx taru-mcp --token xxv_your_token
17
+
18
+ # 3. Copy agent instructions to your project
15
19
  cp node_modules/taru-mcp/samples/CLAUDE.md ./CLAUDE.md
16
20
  ```
17
21
 
18
22
  ### Codex (OpenAI)
19
23
 
20
24
  ```bash
21
- codex mcp add taru -- npx -y taru-mcp --token xxv_your_token
25
+ # 1. Install the package
26
+ npm install taru-mcp
27
+
28
+ # 2. Register MCP server
29
+ codex mcp add taru -- npx taru-mcp --token xxv_your_token
22
30
 
23
- # Copy the agent instructions to your project
31
+ # 3. Copy agent instructions to your project
24
32
  cp node_modules/taru-mcp/samples/AGENTS.md ./AGENTS.md
25
33
  ```
26
34
 
@@ -35,6 +43,8 @@ The `samples/` directory contains ready-to-use instruction files:
35
43
 
36
44
  These files teach the AI how to use taru tools, classify documents vs opinions, handle conflicts, and set confidence scores. **Copy the appropriate file to your project root** after installing.
37
45
 
46
+ > **No package.json?** You can also copy the CLAUDE.md / AGENTS.md content directly from the [setup guide](https://taru.arupa.io/docs/setup).
47
+
38
48
  ## Options
39
49
 
40
50
  | Flag | Env | Default | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taru-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for taru knowledge graph — connect Claude Code or Codex to your team's shared brain",
5
5
  "bin": {
6
6
  "taru-mcp": "./bin/taru-mcp.mjs"