@ainyc/canonry 2.13.2 → 2.14.1
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.
- package/assets/assets/{index-CKzK0os-.js → index-BwFUCV6e.js} +116 -116
- package/assets/assets/{index-CAewPdsZ.css → index-U2SLimrz.css} +1 -1
- package/assets/index.html +2 -2
- package/dist/{chunk-DHMCIJMQ.js → chunk-3T64Y7GR.js} +125 -14
- package/dist/{chunk-UM6RDSRJ.js → chunk-FV6PY5UE.js} +20 -1
- package/dist/{chunk-XJS7NALL.js → chunk-QTS7VZXN.js} +96 -1
- package/dist/cli.js +143 -15
- package/dist/index.js +3 -3
- package/dist/{intelligence-service-54F3NGPM.js → intelligence-service-AEI46KC5.js} +1 -1
- package/dist/mcp.js +12 -1
- package/package.json +6 -6
package/dist/mcp.js
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
projectUpsertRequestSchema,
|
|
11
11
|
runTriggerRequestSchema,
|
|
12
12
|
scheduleUpsertRequestSchema
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-QTS7VZXN.js";
|
|
14
14
|
import "./chunk-MLKGABMK.js";
|
|
15
15
|
|
|
16
16
|
// src/mcp/cli.ts
|
|
@@ -412,6 +412,17 @@ var canonryMcpTools = [
|
|
|
412
412
|
openApiOperations: ["GET /api/v1/projects/{name}/schedule"],
|
|
413
413
|
handler: (client, input) => client.getSchedule(input.project)
|
|
414
414
|
}),
|
|
415
|
+
defineTool({
|
|
416
|
+
name: "canonry_backlinks_latest_release",
|
|
417
|
+
title: "Discover latest Common Crawl release",
|
|
418
|
+
description: "Probes Common Crawl to find the latest published hyperlinkgraph release. Returns the release id and file URLs/sizes ready to feed into a backlinks sync (or null if no candidate slug responded).",
|
|
419
|
+
access: "read",
|
|
420
|
+
tier: "setup",
|
|
421
|
+
inputSchema: emptyInputSchema,
|
|
422
|
+
annotations: readAnnotations(true),
|
|
423
|
+
openApiOperations: ["GET /api/v1/backlinks/latest-release"],
|
|
424
|
+
handler: (client) => client.backlinksLatestRelease()
|
|
425
|
+
}),
|
|
415
426
|
defineTool({
|
|
416
427
|
name: "canonry_settings_get",
|
|
417
428
|
title: "Get settings",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ainyc/canonry",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.14.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Agent-first open-source AEO operating platform - track how answer engines cite your domain",
|
|
6
6
|
"license": "FSL-1.1-ALv2",
|
|
@@ -59,20 +59,20 @@
|
|
|
59
59
|
"@types/node-cron": "^3.0.11",
|
|
60
60
|
"tsup": "^8.5.1",
|
|
61
61
|
"tsx": "^4.19.0",
|
|
62
|
+
"@ainyc/canonry-config": "0.0.0",
|
|
62
63
|
"@ainyc/canonry-api-routes": "0.0.0",
|
|
64
|
+
"@ainyc/canonry-contracts": "0.0.0",
|
|
63
65
|
"@ainyc/canonry-db": "0.0.0",
|
|
64
|
-
"@ainyc/canonry-config": "0.0.0",
|
|
65
66
|
"@ainyc/canonry-integration-bing": "0.0.0",
|
|
66
|
-
"@ainyc/canonry-intelligence": "0.0.0",
|
|
67
67
|
"@ainyc/canonry-integration-commoncrawl": "0.0.0",
|
|
68
|
+
"@ainyc/canonry-intelligence": "0.0.0",
|
|
68
69
|
"@ainyc/canonry-integration-google": "0.0.0",
|
|
69
|
-
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
70
70
|
"@ainyc/canonry-provider-cdp": "0.0.0",
|
|
71
71
|
"@ainyc/canonry-provider-claude": "0.0.0",
|
|
72
|
-
"@ainyc/canonry-contracts": "0.0.0",
|
|
73
72
|
"@ainyc/canonry-provider-gemini": "0.0.0",
|
|
74
|
-
"@ainyc/canonry-
|
|
73
|
+
"@ainyc/canonry-integration-wordpress": "0.0.0",
|
|
75
74
|
"@ainyc/canonry-provider-local": "0.0.0",
|
|
75
|
+
"@ainyc/canonry-provider-openai": "0.0.0",
|
|
76
76
|
"@ainyc/canonry-provider-perplexity": "0.0.0"
|
|
77
77
|
},
|
|
78
78
|
"scripts": {
|