@clusteragent/cluster-mcp 1.0.2 → 1.0.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 +10 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -27,17 +27,20 @@ pip install cluster-agent # Python SDK
|
|
|
27
27
|
├── skills/
|
|
28
28
|
│ ├── trading/ quotes, swap lifecycle, receipt proof (4663)
|
|
29
29
|
│ ├── memory/ built-in memory + Hindsight backend
|
|
30
|
-
│ ├── finance/ portfolio, payouts, keys & metering
|
|
30
|
+
│ ├── finance/ portfolio, payouts, keys & metering
|
|
31
31
|
│ ├── crypto-intel/ wallet forensics, pool forensics, scout swarm
|
|
32
|
-
│ ├── research/
|
|
32
|
+
│ ├── research/ agent roster + OpenBB integration
|
|
33
33
|
│ └── llm-gateway/ 24 models, thinking mode, credit accounting
|
|
34
34
|
├── python/ cluster-agent PyPI SDK
|
|
35
|
-
|
|
36
|
-
├── app/ React/Vite frontend (landing, dashboard, docs)
|
|
37
|
-
├── bot/ keeper bot (DRY default; --confirm-real-money for live)
|
|
38
|
-
└── docs/self-hosting.md full deployment guide
|
|
35
|
+
└── docs/self-hosting.md deployment guide
|
|
39
36
|
```
|
|
40
37
|
|
|
38
|
+
**7 skills total** — 1 installer + 6 domain sub-skills.
|
|
39
|
+
|
|
40
|
+
> The cluster backend, frontend and keeper bot are **not** in this repo — the bot
|
|
41
|
+
> signs real treasury transactions, so the operational stack stays private. This
|
|
42
|
+
> repo is the skill/MCP platform: point it at any cluster deployment.
|
|
43
|
+
|
|
41
44
|
## Quick Start
|
|
42
45
|
|
|
43
46
|
**Agent users** — see [SKILL.md](./SKILL.md). MCP config:
|
|
@@ -49,9 +52,7 @@ pip install cluster-agent # Python SDK
|
|
|
49
52
|
}}}
|
|
50
53
|
```
|
|
51
54
|
|
|
52
|
-
**Self-hosters** — see [docs/self-hosting.md](./docs/self-hosting.md).
|
|
53
|
-
frontend + keeper bot, all local, SQLite default, zero external services except
|
|
54
|
-
one LLM key for chat.
|
|
55
|
+
**Self-hosters** — see [docs/self-hosting.md](./docs/self-hosting.md). Docker images + a deployment guide; SQLite default, zero external services except one LLM key for chat.
|
|
55
56
|
|
|
56
57
|
**Python** — see [python/](./python):
|
|
57
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clusteragent/cluster-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Cluster MCP + skills \u2014 self-hostable index of AI financial agents. Tokenized stocks + crypto on Robinhood Chain, persistent memory, 24-model LLM gateway.",
|
|
5
5
|
"main": "index.mjs",
|
|
6
6
|
"bin": {
|