@triedotdev/mcp 1.0.171 → 1.0.173
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 +2 -15
- package/package.json +15 -13
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## What is Trie?
|
|
8
8
|
|
|
9
|
-
[Trie](https://trie.dev) is a product governance platform that captures governance and insights automatically from conversations, commits, design files, and support threads. It builds a shared ledger from your team's work—integrations so everyone has context before shipping changes.
|
|
9
|
+
[Trie](https://trie.dev) is a product governance platform that captures governance and insights automatically from conversations, commits, design files, and support threads. It builds a shared ledger from your team's work—integrations so everyone (humans and agents) has context before shipping changes.
|
|
10
10
|
|
|
11
11
|
## How it works with trie.dev
|
|
12
12
|
|
|
@@ -105,20 +105,7 @@ This adds Cursor rules and CLAUDE.md guidance so your AI assistant calls `trie_c
|
|
|
105
105
|
|
|
106
106
|
## Configuration
|
|
107
107
|
|
|
108
|
-
Auth and config are stored locally
|
|
109
|
-
|
|
110
|
-
## Development
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
npm install
|
|
114
|
-
npm run build
|
|
115
|
-
npm test
|
|
116
|
-
```
|
|
117
|
-
|
|
118
|
-
**Before submitting:**
|
|
119
|
-
- Tests pass (`npm test`)
|
|
120
|
-
- Typecheck passes (`npm run typecheck`)
|
|
121
|
-
- Lint passes (`npm run lint`)
|
|
108
|
+
Auth tokens and account config are stored locally in `~/.trie/`, keychain-backed where available.
|
|
122
109
|
|
|
123
110
|
## License
|
|
124
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@triedotdev/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.173",
|
|
4
4
|
"description": "Trie cloud context bridge for Cursor and Claude Code.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -20,24 +20,26 @@
|
|
|
20
20
|
"prepublishOnly": "npm run build"
|
|
21
21
|
},
|
|
22
22
|
"keywords": [
|
|
23
|
-
"governance",
|
|
24
|
-
"ledger",
|
|
25
|
-
"ai",
|
|
26
|
-
"agent",
|
|
27
23
|
"mcp",
|
|
24
|
+
"model-context-protocol",
|
|
28
25
|
"cursor",
|
|
29
26
|
"claude",
|
|
27
|
+
"claude-code",
|
|
28
|
+
"ai-context",
|
|
29
|
+
"trie",
|
|
30
|
+
"trie-mcp",
|
|
31
|
+
"team-context",
|
|
32
|
+
"governance",
|
|
33
|
+
"ledger",
|
|
34
|
+
"signals",
|
|
35
|
+
"graph",
|
|
30
36
|
"code-review",
|
|
31
|
-
"security",
|
|
32
|
-
"orchestration",
|
|
33
|
-
"decision-memory",
|
|
34
37
|
"incident-tracking",
|
|
38
|
+
"risk-detection",
|
|
39
|
+
"ai-tools",
|
|
40
|
+
"developer-tools",
|
|
35
41
|
"linear",
|
|
36
|
-
"github"
|
|
37
|
-
"trie",
|
|
38
|
-
"custom-agent",
|
|
39
|
-
"knowledge-base",
|
|
40
|
-
"blockchain"
|
|
42
|
+
"github"
|
|
41
43
|
],
|
|
42
44
|
"author": "Trie Team",
|
|
43
45
|
"license": "MIT",
|