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.
- package/README.md +14 -4
- 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
|
-
|
|
12
|
+
# 1. Install the package
|
|
13
|
+
npm install taru-mcp
|
|
13
14
|
|
|
14
|
-
#
|
|
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
|
-
|
|
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
|
|
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 |
|