agentcanary-mcp 1.3.1 → 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/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentcanary-mcp",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"mcpName": "io.github.MrCerq/agentcanary",
|
|
5
|
-
"description": "MCP server for AgentCanary market intelligence
|
|
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
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
"url": "https://github.com/MrCerq/agentcanary-mcp",
|
|
9
9
|
"source": "github"
|
|
10
10
|
},
|
|
11
|
-
"version": "1.3.
|
|
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.3.
|
|
17
|
+
"version": "1.3.2",
|
|
18
18
|
"transport": {
|
|
19
19
|
"type": "stdio"
|
|
20
20
|
},
|