@prereason/mcp 0.3.1 → 0.3.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.2 (2026-08-19)
4
+
5
+ ### Fixed
6
+ - Briefing count was 17 everywhere; the catalog has served 18 since `btc.etf-flows` (Basic) went live. README tier tables, package description, and server.json now agree with the API.
7
+ - Metric count was 30; the API reports 116.
8
+
3
9
  ## 0.3.0 (2026-04-12)
4
10
 
5
11
  ### Added
package/README.md CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
  **MCP server for [PreReason](https://www.prereason.com) - the Context API for financial agents.**
12
12
 
13
- Give your agent market context, not raw price feeds. 17 briefings covering BTC, macro,<br>
13
+ Give your agent market context, not raw price feeds. 18 briefings covering BTC, macro,<br>
14
14
  cross-asset regimes, and liquidity - each with trend signals, confidence scores, and causal narratives.
15
15
 
16
16
  </div>
@@ -95,13 +95,13 @@ Restart your MCP client after editing the config. PreReason should appear with 5
95
95
 
96
96
  | Tool | Auth | Description |
97
97
  |------|------|-------------|
98
- | `list_briefings` | Open | List all 17 pre-reasoned market briefings with tier requirements |
98
+ | `list_briefings` | Open | List all 18 pre-reasoned market briefings with tier requirements |
99
99
  | `list_metrics` | Open | List all 30 available metrics across bitcoin, macro, and calculated categories |
100
100
  | `get_health` | Open | API health check, version, account tier |
101
101
  | `get_context` | Required | Fetch a pre-reasoned market briefing (markdown or JSON) |
102
102
  | `get_metric` | Required | Fetch a single metric with trend/signal/percentile |
103
103
 
104
- ## 17 Market Briefings
104
+ ## 18 Market Briefings
105
105
 
106
106
  ### Free (6 briefings)
107
107
  | Briefing | Description |
@@ -113,7 +113,7 @@ Restart your MCP client after editing the config. PreReason should appear with 5
113
113
  | `btc.pulse` | Volume, fees, mempool analysis |
114
114
  | `btc.grid-stress` | Epoch pace and difficulty adjustment forecast |
115
115
 
116
- ### Basic - $19.99/mo (5 briefings)
116
+ ### Basic - $19.99/mo (6 briefings)
117
117
  | Briefing | Description |
118
118
  |----------|-------------|
119
119
  | `btc.momentum` | 200D MA support/resistance with 7d/30d/90d momentum and YTD percentiles |
@@ -121,6 +121,7 @@ Restart your MCP client after editing the config. PreReason should appear with 5
121
121
  | `btc.on-chain` | Hash rate, difficulty, fees, mempool health |
122
122
  | `cross.breadth` | Cross-asset breadth with SPY, DXY, VIX |
123
123
  | `btc.miner-survival` | Hashprice thermometer with miner stress scoring |
124
+ | `btc.etf-flows` | Spot BTC ETF net daily flows, aggregate AUM, and per-issuer breakdown |
124
125
 
125
126
  ### Pro - $49.99/mo (6 briefings)
126
127
  | Briefing | Description |
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@prereason/mcp",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "mcpName": "io.github.PreReason/mcp",
5
5
  "type": "module",
6
- "description": "MCP server for PreReason — the Context API for financial agents. 17 pre-reasoned market briefings with trend signals, regime classification, confidence scores, and cross-asset correlations.",
6
+ "description": "MCP server for PreReason — the Context API for financial agents. 18 pre-reasoned market briefings with trend signals, regime classification, confidence scores, and cross-asset correlations.",
7
7
  "bin": {
8
8
  "prereason-mcp": "./bin/cli.js"
9
9
  },