@integrity-labs/agt-cli 0.28.162 → 0.28.163
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/dist/bin/agt.js +4 -4
- package/dist/{chunk-G6NDQYBC.js → chunk-BEUGTZ7Z.js} +9 -5
- package/dist/chunk-BEUGTZ7Z.js.map +1 -0
- package/dist/{chunk-U6HS4U7L.js → chunk-MTKFDGXO.js} +37 -4
- package/dist/{chunk-U6HS4U7L.js.map → chunk-MTKFDGXO.js.map} +1 -1
- package/dist/{chunk-MNW2HVGO.js → chunk-OW6ERQHP.js} +2 -2
- package/dist/{claude-pair-runtime-PJ4OZ3DE.js → claude-pair-runtime-WEKLV5X5.js} +2 -2
- package/dist/lib/manager-worker.js +8 -8
- package/dist/mcp/remote-oauth-proxy.js +68 -3
- package/dist/{persistent-session-T7Q53HW5.js → persistent-session-3ACIT7F5.js} +3 -3
- package/dist/{responsiveness-probe-K4Y7BXRH.js → responsiveness-probe-5OCWCS3M.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-G6NDQYBC.js.map +0 -1
- /package/dist/{chunk-MNW2HVGO.js.map → chunk-OW6ERQHP.js.map} +0 -0
- /package/dist/{claude-pair-runtime-PJ4OZ3DE.js.map → claude-pair-runtime-WEKLV5X5.js.map} +0 -0
- /package/dist/{persistent-session-T7Q53HW5.js.map → persistent-session-3ACIT7F5.js.map} +0 -0
- /package/dist/{responsiveness-probe-K4Y7BXRH.js.map → responsiveness-probe-5OCWCS3M.js.map} +0 -0
|
@@ -4312,7 +4312,9 @@ var OAUTH_PROVIDERS = {
|
|
|
4312
4312
|
clientAuthMethod: "body",
|
|
4313
4313
|
pkce: "S256",
|
|
4314
4314
|
publicClient: true,
|
|
4315
|
-
mcpUrl: "https://mcp.granola.ai/mcp"
|
|
4315
|
+
mcpUrl: "https://mcp.granola.ai/mcp",
|
|
4316
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools).
|
|
4317
|
+
toolAllowlist: ["search-meetings", "read-transcript", "read-summary", "list-folders"]
|
|
4316
4318
|
},
|
|
4317
4319
|
"brand-ninja": {
|
|
4318
4320
|
// ENG-6820: Brand Ninja External-Content MCP, remote streamable-HTTP at
|
|
@@ -4343,7 +4345,9 @@ var OAUTH_PROVIDERS = {
|
|
|
4343
4345
|
clientAuthMethod: "body",
|
|
4344
4346
|
pkce: "S256",
|
|
4345
4347
|
publicClient: true,
|
|
4346
|
-
mcpUrl: "https://ext-api.app.brandninja.ai/v1/mcp"
|
|
4348
|
+
mcpUrl: "https://ext-api.app.brandninja.ai/v1/mcp",
|
|
4349
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools).
|
|
4350
|
+
toolAllowlist: ["submit_content_request", "get_content_status", "list_content_requests", "list_channels", "list_credentials"]
|
|
4347
4351
|
},
|
|
4348
4352
|
"kajabi": {
|
|
4349
4353
|
// Kajabi MCP — remote streamable-HTTP at https://mcp.kajabi.com/mcp.
|
|
@@ -4377,7 +4381,36 @@ var OAUTH_PROVIDERS = {
|
|
|
4377
4381
|
clientAuthMethod: "body",
|
|
4378
4382
|
pkce: "S256",
|
|
4379
4383
|
publicClient: true,
|
|
4380
|
-
mcpUrl: "https://mcp.kajabi.com/mcp"
|
|
4384
|
+
mcpUrl: "https://mcp.kajabi.com/mcp",
|
|
4385
|
+
// Curated surface (matches the catalog seed's defined_scopes[].tools). Kajabi's
|
|
4386
|
+
// live MCP advertises ~111 tools; the agent only needs these 25.
|
|
4387
|
+
toolAllowlist: [
|
|
4388
|
+
"list_sites",
|
|
4389
|
+
"get_site_summary",
|
|
4390
|
+
"select_site",
|
|
4391
|
+
"search_contacts",
|
|
4392
|
+
"get_contact",
|
|
4393
|
+
"search_products",
|
|
4394
|
+
"get_product",
|
|
4395
|
+
"list_offers",
|
|
4396
|
+
"get_offer",
|
|
4397
|
+
"list_offer_purchases",
|
|
4398
|
+
"get_revenue_analytics",
|
|
4399
|
+
"get_contacts_analytics",
|
|
4400
|
+
"list_tags",
|
|
4401
|
+
"create_tag",
|
|
4402
|
+
"tag_contact",
|
|
4403
|
+
"untag_contact",
|
|
4404
|
+
"list_segments",
|
|
4405
|
+
"create_segment",
|
|
4406
|
+
"update_segment",
|
|
4407
|
+
"list_broadcasts",
|
|
4408
|
+
"get_broadcast",
|
|
4409
|
+
"create_broadcast",
|
|
4410
|
+
"list_sequences",
|
|
4411
|
+
"get_sequence",
|
|
4412
|
+
"create_sequence"
|
|
4413
|
+
]
|
|
4381
4414
|
},
|
|
4382
4415
|
"notion-cli": {
|
|
4383
4416
|
// Notion's public OAuth app. Tokens are workspace-scoped and long-lived —
|
|
@@ -6496,4 +6529,4 @@ export {
|
|
|
6496
6529
|
parseEnvIntegrations,
|
|
6497
6530
|
probeMcpEnvSubstitution
|
|
6498
6531
|
};
|
|
6499
|
-
//# sourceMappingURL=chunk-
|
|
6532
|
+
//# sourceMappingURL=chunk-MTKFDGXO.js.map
|