agentcanary-mcp 1.3.0 → 1.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.
@@ -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/index.js CHANGED
@@ -173,7 +173,7 @@ server.tool(
173
173
  // --- Tool: get_news (builder+) ---
174
174
  server.tool(
175
175
  "get_news",
176
- "Get latest market news articles aggregated by AgentCanary. Filterable by ticker. Requires Builder tier or above.",
176
+ "Get aggregated market news from multiple feeds (crypto, equities, macro, geopolitics). Each article returns title, summary, source, publish timestamp, and sentiment tags (POSITIVE / NEGATIVE / NEUTRAL). Filterable by ticker for asset-specific news. Useful for agents tracking catalysts, doing event-driven analysis, or feeding LLM summarization pipelines. Builder tier or above.",
177
177
  {
178
178
  limit: z.number().min(1).max(30).default(10).describe("Number of articles"),
179
179
  ticker: z.string().optional().describe("Filter by ticker symbol (e.g. BTC, NVDA)"),
@@ -330,7 +330,7 @@ server.tool(
330
330
  // --- Tool: get_central_banks (signal+) ---
331
331
  server.tool(
332
332
  "get_central_banks",
333
- "Get central bank data balance sheets, gold reserves, BTC reserves, stablecoin exposure, TIC flows. Tracks institutional macro positioning.",
333
+ "Get central bank positioning data across Fed, ECB, BOJ, PBOC, and major sovereigns. Views: balance-sheets (total assets + YoY change), gold (reserves + accumulation rate), btc (sovereign BTC holdings, post-2024 trend), stablecoins (US dollar exposure via USDC/USDT reserves), reserves (composition shifts), tic (Treasury International Capital flows = who's buying/selling US debt). Useful for agents detecting de-dollarization signals, sovereign rotation, or institutional positioning shifts ahead of macro moves. Signal tier.",
334
334
  {
335
335
  view: z.string().optional().describe("View: balance-sheets, gold, btc, stablecoins, reserves, tic. Omit for overview."),
336
336
  },
@@ -344,7 +344,7 @@ server.tool(
344
344
  // --- Tool: get_expectations (signal+) ---
345
345
  server.tool(
346
346
  "get_expectations",
347
- "Get market expectations crowded trades, early-stage narratives, rotation signals. Identifies where consensus is building or breaking.",
347
+ "Get positioning-vs-consensus signals. Views: crowded (narratives scoring 4-5 in momentum + high positioning concentration = contrarian sell signals), early (narratives scoring 1-2 = under-the-radar opportunities before consensus forms), rotation (sector/narrative flows showing where capital is moving FROM and TO). Each view returns ranked lists with deltas + the underlying signals driving the score. Useful for agents running contrarian strategies, mean-reversion plays, or trying to front-run consensus shifts. Signal tier.",
348
348
  {
349
349
  view: z.string().optional().describe("View: crowded, early, rotation. Omit for overview."),
350
350
  },
@@ -358,7 +358,7 @@ server.tool(
358
358
  // --- Tool: get_macro (builder+) ---
359
359
  server.tool(
360
360
  "get_macro",
361
- "Get macro data snapshot (30+ FRED series), business cycle position, global liquidity, US M2, supply chain stress, calendar of high-impact events.",
361
+ "Get macro state across 30+ FRED series + derived composites. Views: snapshot (full macro dashboard with regime, gauges, key rates), business-cycle (LEI, claims, yield curve, recession probability), global-liquidity (CB balance sheets aggregated, M2 trend, credit spreads, Baltic Dry shipping), us-m2 (US money supply YoY), supply-chain (stress index), calendar-high-impact (next 72h of high-impact economic events with prev/forecast), risk-score (0-100 composite), signals (binary trigger states). Omit view for regime classification (expansion/stagflation/late-cycle/recession). Useful for agents conditioning on macro regime before tactical decisions. Builder tier or above.",
362
362
  {
363
363
  view: z.string().optional().describe("View: snapshot, business-cycle, global-liquidity, us-m2, supply-chain, calendar-high-impact, risk-score, signals. Omit for regime."),
364
364
  },
package/package.json CHANGED
@@ -1,14 +1,22 @@
1
1
  {
2
2
  "name": "agentcanary-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "mcpName": "io.github.MrCerq/agentcanary",
5
- "description": "MCP server for AgentCanary market intelligence 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": {
9
9
  "agentcanary-mcp": "./index.js"
10
10
  },
11
- "keywords": ["mcp", "market-intelligence", "agentcanary", "trading", "macro", "crypto"],
11
+ "keywords": [
12
+ "mcp",
13
+ "ai-agents",
14
+ "autonomous-agents",
15
+ "market-intelligence",
16
+ "agentcanary",
17
+ "macro",
18
+ "crypto"
19
+ ],
12
20
  "author": "AgentCanary",
13
21
  "license": "MIT",
14
22
  "homepage": "https://agentcanary.ai",
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: macro regime, signals, briefs, narratives, options, DeFi.",
5
+ "description": "Cross-asset market intelligence + live derivatives (OI, liquidations) for AI agent builders.",
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.2.0",
11
+ "version": "1.3.2",
12
12
  "packages": [
13
13
  {
14
14
  "registryType": "npm",
15
15
  "registryBaseUrl": "https://registry.npmjs.org",
16
16
  "identifier": "agentcanary-mcp",
17
- "version": "1.2.0",
17
+ "version": "1.3.2",
18
18
  "transport": {
19
19
  "type": "stdio"
20
20
  },