orchard-data-mcp 1.1.2 → 1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.mjs +13 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orchard-data-mcp",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "MCP server for orchard-data: pay-per-call market data for AI agents via x402 (USDC on Base). ML regime forecasts + live-verified track record from a real trading system, catalyst radar, quotes, macro, options expected move.",
5
5
  "mcpName": "io.github.letom1176-spec/orchard-data-mcp",
6
6
  "repository": {
package/server.mjs CHANGED
@@ -50,7 +50,7 @@ async function callPaid(path) {
50
50
  }
51
51
  }
52
52
 
53
- const server = new McpServer({ name: "orchard-data", version: "1.1.0" });
53
+ const server = new McpServer({ name: "orchard-data", version: "1.1.3" });
54
54
 
55
55
  server.registerTool(
56
56
  "list_products",
@@ -61,15 +61,24 @@ server.registerTool(
61
61
  },
62
62
  );
63
63
 
64
+ server.registerTool(
65
+ "get_feed_status",
66
+ { description: "FREE: freshness probe for the rig-fed products (regime forecast, catalyst radar, track record). Returns the age of each data feed so you can verify freshness before spending on a paid call." },
67
+ async () => {
68
+ const res = await fetch(`${BASE}/api/feed-status`, { headers: { Accept: "application/json" } });
69
+ return { content: [{ type: "text", text: await res.text() }] };
70
+ },
71
+ );
72
+
64
73
  const paidTools = [
65
- ["get_regime_forecast", "/api/regime-forecast", "US market regime read ($0.01): ML volatility-regime forecast from a live trading system (when fresh, with 'why') + transparent rules-based snapshot (VIX bands, realized-vol percentile, trend). Best single call for 'what kind of market is this?'"],
66
- ["get_catalyst_radar", "/api/catalyst-radar", "Tickers with fresh bullish news catalysts ($0.01), from an AI news scanner feeding a live trading system. Refreshed ~15min during US market hours."],
74
+ ["get_regime_forecast", "/api/regime-forecast", "US market regime read ($0.01): ML volatility-regime forecast with independently-scored accuracy — audit the ledger via get_track_record before you buy. From a live-forward trading system (~70% walk-forward vol accuracy; direction advisory only), plus a transparent rules-based snapshot (VIX bands, realized-vol percentile, trend). Best single call for 'what kind of market is this?'"],
75
+ ["get_catalyst_radar", "/api/catalyst-radar", "Tickers with fresh bullish news catalysts ($0.01) the AI news scanner feeding a live-forward trading system, not scraped headlines. Refreshed ~15min during US market hours; staleness always disclosed (probe get_feed_status free first)."],
67
76
  ["get_market_brief", "/api/market-brief", "One-call market snapshot ($0.005): BTC/ETH/SOL spot + 24h change, crypto fear & greed, SPY/QQQ/IWM/VIX quotes."],
68
77
  ["get_trending", "/api/trending", "Trending tickers ($0.005): StockTwits trending symbols + r/wallstreetbets mention counts with 24h momentum."],
69
78
  ["get_movers", "/api/movers", "Top trending US tickers with live quotes ($0.005), sorted by absolute move."],
70
79
  ["get_macro", "/api/macro", "Macro dashboard ($0.003): 13w/5y/10y/30y Treasury yields, dollar index, gold, WTI crude, VIX."],
71
80
  ["get_fear_greed", "/api/fear-greed", "Crypto fear & greed index ($0.001), current + previous reading."],
72
- ["get_track_record", "/api/track-record", "Live-verified trading-system track record ($0.01): normalized per-lane win rates, system-vs-SPY multiples, and a server-side scored forecast ledger (fixed disclosed rule vs realized SPY moves — grows daily, can't be faked)."],
81
+ ["get_track_record", "/api/track-record", "Tamper-evident trading track record ($0.01): forecasts timestamped BEFORE outcomes, scored server-side against realized SPY under a fixed rule disclosed in the payloadcannot be rewritten, re-checkable, grows daily. Plus normalized per-lane win rates and system-vs-SPY multiples. Use this to audit get_regime_forecast before relying on it."],
73
82
  ["get_funding_rates", "/api/funding-rates", "Perp funding rates ($0.003): BTC/ETH/SOL from OKX — crowded-side gauge for crypto positioning."],
74
83
  ];
75
84