agentcanary-mcp 1.3.1 → 1.3.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.
@@ -0,0 +1,42 @@
1
+ name: Publish to MCP Registry
2
+
3
+ # Browser-only trigger — click "Run workflow" in GitHub UI under Actions tab.
4
+ # No local tooling, no VPS commands, no auth state on operator's laptop.
5
+ # Authentication via GitHub OIDC (id-token: write permission below) which
6
+ # the registry validates as proof that this workflow IS the io.github.MrCerq
7
+ # namespace. server.json gets published as-is from the repo HEAD.
8
+
9
+ on:
10
+ workflow_dispatch: # manual button in GitHub Actions UI
11
+ push:
12
+ tags: ["v*"] # also auto-trigger on `git tag v1.x.x && git push --tags`
13
+
14
+ jobs:
15
+ publish:
16
+ runs-on: ubuntu-latest
17
+ permissions:
18
+ id-token: write # required for OIDC authentication
19
+ contents: read
20
+
21
+ steps:
22
+ - name: Checkout code
23
+ uses: actions/checkout@v5
24
+
25
+ - name: Install mcp-publisher
26
+ run: |
27
+ curl -L "https://github.com/modelcontextprotocol/registry/releases/latest/download/mcp-publisher_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m | sed 's/x86_64/amd64/;s/aarch64/arm64/').tar.gz" | tar xz mcp-publisher
28
+ ./mcp-publisher --version
29
+
30
+ - name: Authenticate to MCP Registry via GitHub OIDC
31
+ run: ./mcp-publisher login github-oidc
32
+
33
+ - name: Validate server.json against MCP Registry schema
34
+ run: ./mcp-publisher validate
35
+
36
+ - name: Publish server.json to MCP Registry
37
+ run: ./mcp-publisher publish
38
+
39
+ - name: Verify publication
40
+ run: |
41
+ sleep 5
42
+ curl -s "https://registry.modelcontextprotocol.io/v0/servers?search=agentcanary" | jq '.servers[] | {name: .server.name, version: .server.version}'
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # AgentCanary MCP Server
2
2
 
3
- Connect any MCP-compatible AI client to [AgentCanary](https://agentcanary.ai) market intelligence.
3
+ MCP server for [AgentCanary](https://agentcanary.ai) — decision-grade market intelligence for autonomous AI agents. Regime classifications, risk scores, narrative momentum, scenario probabilities, and public track-record-verified signals via 17 MCP tools.
4
4
 
5
5
  ## Quick Start
6
6
 
@@ -32,23 +32,44 @@ curl -X POST https://api.agentcanary.ai/api/keys/create \
32
32
 
33
33
  Deposit USDC/USDT on any major EVM chain (Base, Ethereum, Arbitrum, Optimism, Polygon). $5 minimum. Credits never expire.
34
34
 
35
- ## Tools
35
+ ## Tools (17)
36
36
 
37
- | Tool | Tier | Description |
38
- |------|------|-------------|
39
- | `get_briefs` | Explorer | Latest AI market briefs (4x daily) |
40
- | `get_regime` | Explorer | Current macro regime + risk gauge |
41
- | `get_indicator` | Builder | Any of 36 proprietary indicators |
42
- | `get_narratives` | Signal | Narrative momentum scores |
43
- | `get_scenarios` | Signal | Forward scenario probabilities |
44
- | `get_whale_alerts` | Explorer | Large crypto transactions |
45
- | `get_fear_greed` | Explorer | Crypto Fear & Greed Index |
46
- | `get_signals` | Signal | Multi-factor trading signals |
37
+ | Tool | Returns |
38
+ |------|---------|
39
+ | `get_briefs` | Daily market intelligence briefs (4×/day: radar / signal / pulse / wrap) |
40
+ | `get_regime` | Current macro regime, risk gauge (0-100), key drivers, transition probabilities |
41
+ | `get_indicators` | Any of 50+ proprietary indicators (Pi Cycle, Wyckoff, CAPE, Hindenburg…) — pass `name=` |
42
+ | `get_narratives` | Top active narratives with momentum scores, stage, asset impact |
43
+ | `get_predictions` | Prediction market data (Polymarket, Kalshi) |
44
+ | `get_scores` | Prediction scoring results (hit / miss / partial after 72h) |
45
+ | `get_scenario_analysis` | Forward scenarios with price targets |
46
+ | `get_signals` | 20 sub-types via `type=`: whale-alerts, fear-greed, funding-rates, btc-etf-flows, vix, credit-stress, sector-rotation, insider-activity, correlations, dxy, oil, yield-curve, market-structure, stablecoin-dominance, whale-positions, cftc-cot, bofa-fms, dispersion, geopolitical-risk, decision-engine |
47
+ | `get_news` | Aggregated market news, filterable by ticker |
48
+ | `get_market_structure` | Orderbook depth, liquidation heatmap, exchange volumes — pass `view=` |
49
+ | `get_defi` | DeFi yields, stablecoins, chains, unlocks, perps — pass `category=` |
50
+ | `get_btc_options` | BTC options max pain + volatility skew |
51
+ | `get_central_banks` | Balance sheets, gold, reserves, TIC — pass `view=` |
52
+ | `get_expectations` | Market expectations (crowded, early, rotation) |
53
+ | `get_macro` | FRED, business cycle, global liquidity, M2, supply chain, high-impact calendar |
54
+ | `get_open_interest` | Cross-exchange OI across 43 perps + top by USD + 4h Δ% shifters |
55
+ | `get_liquidations` | 24h totals + 4h long/short split + per-side event counts + dominant-direction label |
56
+
57
+ ## Pricing
58
+
59
+ | Tier | Deposit | Calls/day | Adds |
60
+ |------|---------|-----------|------|
61
+ | Explorer | free | 50 | briefs + scores |
62
+ | Builder | $50 USDC | 500 | + indicators / regime / narratives / news / predictions |
63
+ | Signal | $150 USDC | 2000 | + scenarios / positioning / full content |
64
+ | Institutional | $500 USDC | unlimited | white-label, SLA |
65
+
66
+ Per-call cost: $0.01-0.02 from deposit. Credits never expire. No subscriptions.
47
67
 
48
68
  ## Links
49
69
 
50
- - [API Docs](https://api.agentcanary.ai/api/docs)
70
+ - [API Docs (OpenAPI)](https://api.agentcanary.ai/api/docs)
51
71
  - [Website](https://agentcanary.ai)
72
+ - [The Record (public brief archive)](https://agentcanary.ai/record/)
52
73
  - [Telegram](https://t.me/AgentCanary)
53
74
 
54
75
  ## License
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "agentcanary-mcp",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "mcpName": "io.github.MrCerq/agentcanary",
5
- "description": "MCP server for AgentCanary market intelligence \u2014 briefs, indicators, regime, narratives, predictions, scoring, plus live derivatives (open interest, liquidations)",
5
+ "description": "MCP server for AgentCanary \u2014 decision-grade market intelligence for autonomous AI agents. Regime, risk, narrative momentum, scenarios, track-record-verified signals via API + MCP.",
6
6
  "main": "index.js",
7
7
  "type": "module",
8
8
  "bin": {
@@ -10,9 +10,10 @@
10
10
  },
11
11
  "keywords": [
12
12
  "mcp",
13
+ "ai-agents",
14
+ "autonomous-agents",
13
15
  "market-intelligence",
14
16
  "agentcanary",
15
- "trading",
16
17
  "macro",
17
18
  "crypto"
18
19
  ],
package/server.json CHANGED
@@ -2,19 +2,19 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.MrCerq/agentcanary",
4
4
  "title": "AgentCanary",
5
- "description": "Cross-asset market intelligence + live derivatives (OI, liquidations) for AI agent builders.",
5
+ "description": "Decision-grade market intelligence for autonomous AI agents. Regime, risk, narrative momentum, scenario probabilities, and public track-record-verified signals \u2014 schema-stable, fail-soft, no KYC. 17 tools via stdio MCP.",
6
6
  "websiteUrl": "https://agentcanary.ai",
7
7
  "repository": {
8
8
  "url": "https://github.com/MrCerq/agentcanary-mcp",
9
9
  "source": "github"
10
10
  },
11
- "version": "1.3.1",
11
+ "version": "1.3.3",
12
12
  "packages": [
13
13
  {
14
14
  "registryType": "npm",
15
15
  "registryBaseUrl": "https://registry.npmjs.org",
16
16
  "identifier": "agentcanary-mcp",
17
- "version": "1.3.1",
17
+ "version": "1.3.3",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },