coinopai-mcp 1.2.6 → 1.2.7
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 +43 -5
- package/index.js +21 -7
- package/package.json +2 -2
- package/server.json +1 -1
package/README.md
CHANGED
|
@@ -7,16 +7,28 @@
|
|
|
7
7
|
[](https://x402.org)
|
|
8
8
|
[](https://base.org)
|
|
9
9
|
|
|
10
|
-
**
|
|
10
|
+
**Directional market intelligence with built-in outcome verification.**
|
|
11
11
|
|
|
12
12
|
**Source:** https://github.com/forgemeshlabs/coinopai-mcp
|
|
13
13
|
|
|
14
|
-
An MCP server that
|
|
14
|
+
An MCP server that lets AI agents buy Kronos market intelligence with [x402](https://x402.org) micropayments on Base. Kronos does not just generate signals: every decision gets a `decision_id`, and every `decision_id` can be audited against later market prices.
|
|
15
15
|
|
|
16
16
|
> This repo is the MCP client layer; paid intelligence is served from hosted CoinOpAI x402 endpoints.
|
|
17
17
|
|
|
18
18
|
> Wrong predictions are shown too. That's the point.
|
|
19
19
|
|
|
20
|
+
## Why Kronos Is Different
|
|
21
|
+
|
|
22
|
+
Most signal APIs stop after making a prediction. Kronos assigns a `decision_id` and lets every decision be audited against future market behavior.
|
|
23
|
+
|
|
24
|
+
The moat is the verification loop:
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
preflight -> decision -> audit
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
Trust the process less. Verify the record more.
|
|
31
|
+
|
|
20
32
|
---
|
|
21
33
|
|
|
22
34
|
## Architecture
|
|
@@ -63,6 +75,32 @@ check_trade_preflight ──→ get_crypto_decision ──→ [wait 1h] ─
|
|
|
63
75
|
|
|
64
76
|
Every decision is self-verifying. The `decision_id` links the prediction to the outcome. The audit fetches real market prices and produces a verdict. Nothing is hidden.
|
|
65
77
|
|
|
78
|
+
## Current Status
|
|
79
|
+
|
|
80
|
+
**Live**
|
|
81
|
+
- Signals
|
|
82
|
+
- Risk assessment
|
|
83
|
+
- Decision guidance
|
|
84
|
+
- Outcome verification
|
|
85
|
+
|
|
86
|
+
**Research**
|
|
87
|
+
- Forecast intelligence: validation in progress
|
|
88
|
+
- Forecast vs execution agreement analysis: collecting evidence
|
|
89
|
+
|
|
90
|
+
Forecast outputs are not exposed publicly. Validation comes first.
|
|
91
|
+
|
|
92
|
+
## Signal Scale
|
|
93
|
+
|
|
94
|
+
| Signal | Meaning |
|
|
95
|
+
|--------|---------|
|
|
96
|
+
| Positive | Bullish directional read |
|
|
97
|
+
| Negative | Bearish directional read |
|
|
98
|
+
| 0.00-0.01 | Weak magnitude |
|
|
99
|
+
| 0.01-0.03 | Moderate magnitude |
|
|
100
|
+
| 0.03+ | Strong magnitude |
|
|
101
|
+
|
|
102
|
+
Signals are probabilistic model outputs, not guarantees or human recommendations.
|
|
103
|
+
|
|
66
104
|
---
|
|
67
105
|
|
|
68
106
|
## Real Output
|
|
@@ -120,9 +158,9 @@ It gets some right. It gets some wrong. The loop makes both visible.
|
|
|
120
158
|
| `check_trade_preflight` | Gate check: market allowed, cooldown, regime, signal strength | $0.05 | ✓ |
|
|
121
159
|
| `get_crypto_decision` | CONSIDER\_LONG/SHORT/NO\_ACTION + `decision_id` | $0.15 | ✓ |
|
|
122
160
|
| `audit_trade_decision` | Verify against real prices: verdict + PnL% | $0.07 | ✓ |
|
|
123
|
-
| `get_crypto_signals` |
|
|
124
|
-
| `get_crypto_signal_history` | Up to 168h of signal history | $0.05 | ✓ |
|
|
125
|
-
| `get_crypto_risk` | Market risk state
|
|
161
|
+
| `get_crypto_signals` | Directional market intelligence for BTC, ETH, SOL, XRP, ADA | $0.05 | ✓ |
|
|
162
|
+
| `get_crypto_signal_history` | Up to 168h of signal history for analysis | $0.05 | ✓ |
|
|
163
|
+
| `get_crypto_risk` | Market risk state and cooldown context | $0.02 | — |
|
|
126
164
|
| `search_agent_automations` | Search 819 agent automation prompts | $0.01 | — |
|
|
127
165
|
| `get_agent_automation` | Full prompt + workflow steps by slug | $0.01 | — |
|
|
128
166
|
| `list_automation_categories` | All 35 automation categories with counts | $0.005 | — |
|
package/index.js
CHANGED
|
@@ -68,7 +68,7 @@ const TOOLS = [
|
|
|
68
68
|
},
|
|
69
69
|
{
|
|
70
70
|
name: "get_crypto_signals",
|
|
71
|
-
description: "Latest
|
|
71
|
+
description: "Latest Kronos directional market intelligence for BTC, ETH, SOL, XRP, ADA. Positive = bullish, negative = bearish; magnitude under 0.01 is weak, 0.01-0.03 moderate, 0.03+ strong. Costs $0.05 USDC.",
|
|
72
72
|
inputSchema: {
|
|
73
73
|
type: "object",
|
|
74
74
|
properties: {
|
|
@@ -78,12 +78,12 @@ const TOOLS = [
|
|
|
78
78
|
},
|
|
79
79
|
{
|
|
80
80
|
name: "get_crypto_risk",
|
|
81
|
-
description: "Current
|
|
81
|
+
description: "Current market risk state and cooldown context for Kronos decisions. Useful as supporting context, not a standalone trading command. Costs $0.02 USDC.",
|
|
82
82
|
inputSchema: { type: "object", properties: {} }
|
|
83
83
|
},
|
|
84
84
|
{
|
|
85
85
|
name: "get_crypto_signal_history",
|
|
86
|
-
description: "
|
|
86
|
+
description: "Recent Kronos signal history for BTC/ETH/SOL/XRP/ADA. Use it to inspect directional context before or after a decision. Costs $0.05 USDC.",
|
|
87
87
|
inputSchema: {
|
|
88
88
|
type: "object",
|
|
89
89
|
properties: {
|
|
@@ -94,7 +94,7 @@ const TOOLS = [
|
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
name: "get_crypto_decision",
|
|
97
|
-
description: "Get
|
|
97
|
+
description: "Get probabilistic decision guidance from Kronos, then verify it. Returns CONSIDER_LONG/SHORT/NO_ACTION with confidence, regime, and a decision_id. Call audit_trade_decision with that ID after the evaluation window to see whether the direction held. Costs $0.15 USDC.",
|
|
98
98
|
inputSchema: {
|
|
99
99
|
type: "object",
|
|
100
100
|
properties: {
|
|
@@ -106,7 +106,7 @@ const TOOLS = [
|
|
|
106
106
|
},
|
|
107
107
|
{
|
|
108
108
|
name: "check_trade_preflight",
|
|
109
|
-
description: "Step 1 of the
|
|
109
|
+
description: "Step 1 of the verified decision loop. Checks market state, cooldown, data freshness, and signal strength before calling get_crypto_decision. Costs $0.05 USDC.",
|
|
110
110
|
inputSchema: {
|
|
111
111
|
type: "object",
|
|
112
112
|
properties: {
|
|
@@ -118,7 +118,7 @@ const TOOLS = [
|
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
name: "audit_trade_decision",
|
|
121
|
-
description: "The accountability step
|
|
121
|
+
description: "The accountability step. Verify a Kronos decision_id against later market prices. Returns whether direction held, PnL%, and a verdict: GOOD_DECISION, BAD_DIRECTION, NOISE, or NO_ACTION_TAKEN. Costs $0.07 USDC.",
|
|
122
122
|
inputSchema: {
|
|
123
123
|
type: "object",
|
|
124
124
|
properties: {
|
|
@@ -128,6 +128,17 @@ const TOOLS = [
|
|
|
128
128
|
},
|
|
129
129
|
required: ["decision_id"]
|
|
130
130
|
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
name: "get_crypto_forecast",
|
|
134
|
+
description: "Conformally-calibrated price forecast: an honest 80% prediction interval (range_80, ~0.80 empirical coverage) plus point return and upside probability for BTC/ETH/SOL/XRP/ADA. The directional point has no demonstrated backtest edge (~51% accurate) — the calibrated range is the validated product. Costs $0.05 USDC.",
|
|
135
|
+
inputSchema: {
|
|
136
|
+
type: "object",
|
|
137
|
+
properties: {
|
|
138
|
+
symbol: { type: "string", description: "Symbol: BTC, ETH, SOL, XRP, ADA (default: BTC)" },
|
|
139
|
+
affiliate_id: { type: "string", description: "Optional Pyrimid affiliate ID (af_xxxxx). Affiliate earns a commission from within the listed price — no extra cost to you." }
|
|
140
|
+
}
|
|
141
|
+
}
|
|
131
142
|
}
|
|
132
143
|
];
|
|
133
144
|
|
|
@@ -229,7 +240,7 @@ async function main() {
|
|
|
229
240
|
}
|
|
230
241
|
|
|
231
242
|
const server = new Server(
|
|
232
|
-
{ name: "coinopai-mcp", version: "1.2.
|
|
243
|
+
{ name: "coinopai-mcp", version: "1.2.7" },
|
|
233
244
|
{ capabilities: { tools: {} } }
|
|
234
245
|
);
|
|
235
246
|
|
|
@@ -272,6 +283,9 @@ async function main() {
|
|
|
272
283
|
case "audit_trade_decision":
|
|
273
284
|
data = await callPaid(paymentContext, `/api/kronos/audit?decision_id=${encodeURIComponent(args.decision_id)}&window=${encodeURIComponent(args.window || "4h")}`, affiliateId);
|
|
274
285
|
break;
|
|
286
|
+
case "get_crypto_forecast":
|
|
287
|
+
data = await callPaid(paymentContext, `/api/kronos/forecast?symbol=${encodeURIComponent(args.symbol || "BTC")}`, affiliateId);
|
|
288
|
+
break;
|
|
275
289
|
default:
|
|
276
290
|
throw new Error("Unknown tool: " + name);
|
|
277
291
|
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "coinopai-mcp",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.7",
|
|
4
4
|
"mcpName": "io.github.forgemeshlabs/coinopai-mcp",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Directional crypto market intelligence MCP with x402 payments, decision guidance, and built-in outcome verification",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"coinopai-mcp": "index.js"
|
package/server.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.forgemeshlabs/coinopai-mcp",
|
|
4
|
-
"description": "
|
|
4
|
+
"description": "Directional crypto market intelligence with decision guidance, outcome verification, and x402 micropayments on Base.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/forgemeshlabs/coinopai-mcp",
|
|
7
7
|
"source": "github"
|