agentcanary-mcp 1.1.1 → 1.1.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.
Files changed (3) hide show
  1. package/index.js +1 -1
  2. package/package.json +2 -1
  3. package/server.json +31 -0
package/index.js CHANGED
@@ -81,7 +81,7 @@ async function detectTier() {
81
81
 
82
82
  const server = new McpServer({
83
83
  name: "agentcanary",
84
- version: "1.1.1",
84
+ version: "1.1.2",
85
85
  });
86
86
 
87
87
  // --- Tool: get_briefs (all tiers) ---
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "agentcanary-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
+ "mcpName": "io.github.MrCerq/agentcanary",
4
5
  "description": "MCP server for AgentCanary market intelligence — briefs, indicators, regime, narratives, predictions, scoring",
5
6
  "main": "index.js",
6
7
  "type": "module",
package/server.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.MrCerq/agentcanary",
4
+ "title": "AgentCanary",
5
+ "description": "Cross-asset market intelligence: macro regime, signals, briefs, narratives, options, DeFi.",
6
+ "websiteUrl": "https://agentcanary.ai",
7
+ "repository": {
8
+ "url": "https://github.com/MrCerq/agentcanary-mcp",
9
+ "source": "github"
10
+ },
11
+ "version": "1.1.2",
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "registryBaseUrl": "https://registry.npmjs.org",
16
+ "identifier": "agentcanary-mcp",
17
+ "version": "1.1.2",
18
+ "transport": {
19
+ "type": "stdio"
20
+ },
21
+ "environmentVariables": [
22
+ {
23
+ "name": "AC_API_KEY",
24
+ "description": "AgentCanary API key. Get one at https://app.agentcanary.ai or POST https://api.agentcanary.ai/api/keys/create with a wallet address.",
25
+ "isRequired": true,
26
+ "isSecret": true
27
+ }
28
+ ]
29
+ }
30
+ ]
31
+ }