veryfront 0.1.759 → 0.1.761
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/esm/cli/commands/init/catalog.d.ts.map +1 -1
- package/esm/cli/commands/init/catalog.js +116 -1
- package/esm/cli/shared/config.d.ts +0 -6
- package/esm/cli/shared/config.d.ts.map +1 -1
- package/esm/cli/shared/config.js +64 -8
- package/esm/cli/templates/integration-loader.d.ts.map +1 -1
- package/esm/cli/templates/integration-loader.js +2 -52
- package/esm/deno.d.ts +5 -16
- package/esm/deno.js +6 -17
- package/esm/src/agent/ag-ui/tool-shared.d.ts.map +1 -1
- package/esm/src/agent/ag-ui/tool-shared.js +7 -1
- package/esm/src/agent/child-run/invoke-agent-child-runs.d.ts +0 -1
- package/esm/src/agent/child-run/invoke-agent-child-runs.d.ts.map +1 -1
- package/esm/src/agent/child-run/invoke-agent-child-runs.js +0 -1
- package/esm/src/agent/conversation/bootstrap.d.ts +0 -1
- package/esm/src/agent/conversation/bootstrap.d.ts.map +1 -1
- package/esm/src/agent/conversation/bootstrap.js +0 -1
- package/esm/src/agent/conversation/durable.d.ts +0 -1
- package/esm/src/agent/conversation/durable.d.ts.map +1 -1
- package/esm/src/agent/conversation/durable.js +0 -1
- package/esm/src/agent/factory.d.ts.map +1 -1
- package/esm/src/agent/factory.js +7 -1
- package/esm/src/agent/hosted/chat-preparation.d.ts +1 -1
- package/esm/src/agent/hosted/chat-preparation.d.ts.map +1 -1
- package/esm/src/agent/hosted/chat-preparation.js +17 -3
- package/esm/src/agent/hosted/chat-runtime-contract.d.ts +2 -0
- package/esm/src/agent/hosted/chat-runtime-contract.d.ts.map +1 -1
- package/esm/src/agent/hosted/default-chat-runtime.d.ts +2 -0
- package/esm/src/agent/hosted/default-chat-runtime.d.ts.map +1 -1
- package/esm/src/agent/hosted/default-chat-runtime.js +1 -0
- package/esm/src/agent/hosted/default-project-steering-refresh.js +1 -1
- package/esm/src/agent/hosted/project-steering-adapter.d.ts +7 -0
- package/esm/src/agent/hosted/project-steering-adapter.d.ts.map +1 -1
- package/esm/src/agent/hosted/project-steering-adapter.js +12 -1
- package/esm/src/agent/hosted/veryfront-cloud-agent-service.d.ts +4 -0
- package/esm/src/agent/hosted/veryfront-cloud-agent-service.d.ts.map +1 -1
- package/esm/src/agent/hosted/veryfront-cloud-agent-service.js +14 -12
- package/esm/src/agent/index.d.ts +1 -0
- package/esm/src/agent/index.d.ts.map +1 -1
- package/esm/src/agent/index.js +1 -0
- package/esm/src/agent/project/context.d.ts +2 -0
- package/esm/src/agent/project/context.d.ts.map +1 -1
- package/esm/src/agent/project/context.js +1 -0
- package/esm/src/agent/project/steering-mutation.d.ts.map +1 -1
- package/esm/src/agent/project/steering-mutation.js +7 -1
- package/esm/src/agent/runtime/agent-definition.d.ts +6 -0
- package/esm/src/agent/runtime/agent-definition.d.ts.map +1 -1
- package/esm/src/agent/runtime/agent-definition.js +46 -0
- package/esm/src/agent/runtime/agent-delegation-names.d.ts +5 -0
- package/esm/src/agent/runtime/agent-delegation-names.d.ts.map +1 -0
- package/esm/src/agent/runtime/agent-delegation-names.js +8 -0
- package/esm/src/agent/runtime/agent-delegation.d.ts +32 -0
- package/esm/src/agent/runtime/agent-delegation.d.ts.map +1 -0
- package/esm/src/agent/runtime/agent-delegation.js +57 -0
- package/esm/src/agent/runtime/agent-markdown-adapter.d.ts.map +1 -1
- package/esm/src/agent/runtime/agent-markdown-adapter.js +24 -0
- package/esm/src/agent/runtime/index.d.ts.map +1 -1
- package/esm/src/agent/runtime/index.js +8 -0
- package/esm/src/agent/runtime/local-tool.d.ts +6 -0
- package/esm/src/agent/runtime/local-tool.d.ts.map +1 -0
- package/esm/src/agent/runtime/local-tool.js +15 -0
- package/esm/src/agent/runtime/project-skill-catalog.d.ts.map +1 -1
- package/esm/src/agent/runtime/project-skill-catalog.js +67 -0
- package/esm/src/agent/runtime/project-skill-loader.d.ts +9 -0
- package/esm/src/agent/runtime/project-skill-loader.d.ts.map +1 -1
- package/esm/src/agent/runtime/project-skill-loader.js +44 -6
- package/esm/src/agent/runtime/skill-metadata.d.ts +23 -0
- package/esm/src/agent/runtime/skill-metadata.d.ts.map +1 -1
- package/esm/src/agent/runtime/skill-metadata.js +11 -0
- package/esm/src/agent/runtime/tool-helpers.d.ts +3 -1
- package/esm/src/agent/runtime/tool-helpers.d.ts.map +1 -1
- package/esm/src/agent/runtime/tool-helpers.js +45 -11
- package/esm/src/agent/service/request-auth-cache.d.ts +0 -1
- package/esm/src/agent/service/request-auth-cache.d.ts.map +1 -1
- package/esm/src/agent/service/request-auth-cache.js +0 -1
- package/esm/src/channels/control-plane.d.ts +1 -0
- package/esm/src/channels/control-plane.d.ts.map +1 -1
- package/esm/src/channels/control-plane.js +4 -2
- package/esm/src/chat/ag-ui.d.ts.map +1 -1
- package/esm/src/chat/conversation.d.ts.map +1 -1
- package/esm/src/chat/final-step-fallback.d.ts.map +1 -1
- package/esm/src/chat/protocol.d.ts.map +1 -1
- package/esm/src/chat/protocol.js +1 -0
- package/esm/src/chat/provider-errors.d.ts.map +1 -1
- package/esm/src/chat/provider-errors.js +0 -1
- package/esm/src/chat/stream-watchdog.d.ts +0 -1
- package/esm/src/chat/stream-watchdog.d.ts.map +1 -1
- package/esm/src/chat/stream-watchdog.js +0 -1
- package/esm/src/config/environment-config.d.ts +1 -0
- package/esm/src/config/environment-config.d.ts.map +1 -1
- package/esm/src/config/environment-config.js +4 -0
- package/esm/src/discovery/agent-scoped-capabilities.d.ts +54 -0
- package/esm/src/discovery/agent-scoped-capabilities.d.ts.map +1 -0
- package/esm/src/discovery/agent-scoped-capabilities.js +228 -0
- package/esm/src/discovery/discovery-engine.d.ts.map +1 -1
- package/esm/src/discovery/discovery-engine.js +19 -15
- package/esm/src/discovery/file-discovery.d.ts +10 -0
- package/esm/src/discovery/file-discovery.d.ts.map +1 -1
- package/esm/src/discovery/file-discovery.js +46 -0
- package/esm/src/discovery/handlers/runtime-agent-markdown-handler.d.ts +12 -0
- package/esm/src/discovery/handlers/runtime-agent-markdown-handler.d.ts.map +1 -1
- package/esm/src/discovery/handlers/runtime-agent-markdown-handler.js +99 -22
- package/esm/src/errors/error-registry/agent.d.ts +2 -0
- package/esm/src/errors/error-registry/agent.d.ts.map +1 -1
- package/esm/src/errors/error-registry/agent.js +8 -0
- package/esm/src/errors/error-registry.d.ts +1 -0
- package/esm/src/errors/error-registry.d.ts.map +1 -1
- package/esm/src/extensions/errors.d.ts +2 -0
- package/esm/src/extensions/errors.d.ts.map +1 -1
- package/esm/src/extensions/errors.js +8 -0
- package/esm/src/extensions/loader.d.ts +9 -6
- package/esm/src/extensions/loader.d.ts.map +1 -1
- package/esm/src/extensions/loader.js +39 -4
- package/esm/src/extensions/orchestrate.d.ts +3 -0
- package/esm/src/extensions/orchestrate.d.ts.map +1 -1
- package/esm/src/extensions/orchestrate.js +3 -1
- package/esm/src/integrations/_data.d.ts.map +1 -1
- package/esm/src/integrations/_data.js +31348 -7873
- package/esm/src/integrations/_tool_summaries.d.ts.map +1 -1
- package/esm/src/integrations/_tool_summaries.js +1737 -11
- package/esm/src/integrations/feature-flags.d.ts +1 -1
- package/esm/src/integrations/feature-flags.d.ts.map +1 -1
- package/esm/src/integrations/feature-flags.js +83 -0
- package/esm/src/integrations/schema.d.ts +129 -4
- package/esm/src/integrations/schema.d.ts.map +1 -1
- package/esm/src/integrations/schema.js +126 -1
- package/esm/src/internal-agents/run-stream.d.ts +4 -0
- package/esm/src/internal-agents/run-stream.d.ts.map +1 -1
- package/esm/src/internal-agents/run-stream.js +18 -5
- package/esm/src/mcp/server.d.ts.map +1 -1
- package/esm/src/mcp/server.js +5 -0
- package/esm/src/platform/adapters/base.d.ts +7 -0
- package/esm/src/platform/adapters/base.d.ts.map +1 -1
- package/esm/src/platform/adapters/runtime/deno/adapter.d.ts.map +1 -1
- package/esm/src/platform/adapters/runtime/deno/adapter.js +7 -2
- package/esm/src/registry/project-scoped-registry-manager.d.ts +7 -0
- package/esm/src/registry/project-scoped-registry-manager.d.ts.map +1 -1
- package/esm/src/registry/project-scoped-registry-manager.js +10 -0
- package/esm/src/registry/scoped-registry-facade.d.ts +2 -0
- package/esm/src/registry/scoped-registry-facade.d.ts.map +1 -1
- package/esm/src/registry/scoped-registry-facade.js +4 -0
- package/esm/src/rendering/layouts/utils/component-loader.d.ts +1 -1
- package/esm/src/rendering/layouts/utils/component-loader.d.ts.map +1 -1
- package/esm/src/rendering/layouts/utils/component-loader.js +82 -3
- package/esm/src/rendering/orchestrator/css-cache.d.ts +3 -0
- package/esm/src/rendering/orchestrator/css-cache.d.ts.map +1 -1
- package/esm/src/rendering/orchestrator/css-cache.js +16 -8
- package/esm/src/rendering/orchestrator/mdx.d.ts.map +1 -1
- package/esm/src/rendering/orchestrator/mdx.js +12 -1
- package/esm/src/server/bootstrap.d.ts.map +1 -1
- package/esm/src/server/bootstrap.js +3 -0
- package/esm/src/server/handlers/dev/dashboard/api.js +6 -3
- package/esm/src/server/handlers/request/agent-stream.handler.d.ts.map +1 -1
- package/esm/src/server/handlers/request/agent-stream.handler.js +10 -0
- package/esm/src/server/handlers/request/channel-invoke.handler.d.ts.map +1 -1
- package/esm/src/server/handlers/request/channel-invoke.handler.js +8 -0
- package/esm/src/server/handlers/request/runtime-shutdown-response.d.ts +13 -0
- package/esm/src/server/handlers/request/runtime-shutdown-response.d.ts.map +1 -0
- package/esm/src/server/handlers/request/runtime-shutdown-response.js +16 -0
- package/esm/src/server/production-server.d.ts.map +1 -1
- package/esm/src/server/production-server.js +7 -1
- package/esm/src/server/services/rsc/endpoints/rsc-bundles.generated.d.ts.map +1 -1
- package/esm/src/server/services/rsc/endpoints/rsc-bundles.generated.js +2 -2
- package/esm/src/server/shutdown-state.d.ts +16 -0
- package/esm/src/server/shutdown-state.d.ts.map +1 -0
- package/esm/src/server/shutdown-state.js +22 -0
- package/esm/src/skill/index.d.ts +1 -1
- package/esm/src/skill/index.d.ts.map +1 -1
- package/esm/src/skill/index.js +1 -1
- package/esm/src/skill/registry.d.ts +29 -3
- package/esm/src/skill/registry.d.ts.map +1 -1
- package/esm/src/skill/registry.js +57 -8
- package/esm/src/skill/tools.d.ts.map +1 -1
- package/esm/src/skill/tools.js +27 -25
- package/esm/src/skill/types.d.ts +8 -0
- package/esm/src/skill/types.d.ts.map +1 -1
- package/esm/src/tool/executor.d.ts +7 -1
- package/esm/src/tool/executor.d.ts.map +1 -1
- package/esm/src/tool/executor.js +12 -1
- package/esm/src/tool/index.d.ts +1 -1
- package/esm/src/tool/index.d.ts.map +1 -1
- package/esm/src/tool/index.js +1 -1
- package/esm/src/tool/registry.d.ts +1 -0
- package/esm/src/tool/registry.d.ts.map +1 -1
- package/esm/src/tool/registry.js +25 -0
- package/esm/src/tool/types.d.ts +9 -0
- package/esm/src/tool/types.d.ts.map +1 -1
- package/esm/src/utils/constants/cache.d.ts +8 -0
- package/esm/src/utils/constants/cache.d.ts.map +1 -1
- package/esm/src/utils/constants/cache.js +8 -0
- package/esm/src/utils/constants/index.d.ts +1 -1
- package/esm/src/utils/constants/index.d.ts.map +1 -1
- package/esm/src/utils/constants/index.js +1 -1
- package/esm/src/utils/index.d.ts +1 -1
- package/esm/src/utils/index.d.ts.map +1 -1
- package/esm/src/utils/index.js +1 -1
- package/esm/src/utils/lru-wrapper.d.ts +2 -0
- package/esm/src/utils/lru-wrapper.d.ts.map +1 -1
- package/esm/src/utils/lru-wrapper.js +1 -0
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -45
- package/esm/src/chat/compat.d.ts +0 -782
- package/esm/src/chat/compat.d.ts.map +0 -1
- package/esm/src/chat/compat.js +0 -113
|
@@ -1,4 +1,86 @@
|
|
|
1
1
|
export const historicalToolSummaries = {
|
|
2
|
+
"activecampaign__list_contacts": {
|
|
3
|
+
"collectionKeys": ["contacts"],
|
|
4
|
+
"collectionName": "contacts",
|
|
5
|
+
"itemFields": [
|
|
6
|
+
{ "name": "id" },
|
|
7
|
+
{ "name": "email" },
|
|
8
|
+
{ "name": "firstName" },
|
|
9
|
+
{ "name": "lastName" },
|
|
10
|
+
{ "name": "phone" },
|
|
11
|
+
{ "name": "cdate" },
|
|
12
|
+
{ "name": "udate" },
|
|
13
|
+
],
|
|
14
|
+
"outputFields": [{ "name": "meta", "kind": "object" }],
|
|
15
|
+
"omitted": "contact field values, scores, and provider-specific payload fields",
|
|
16
|
+
},
|
|
17
|
+
"algolia__list_indices": {
|
|
18
|
+
"collectionKeys": ["items", "indices"],
|
|
19
|
+
"collectionName": "indices",
|
|
20
|
+
"itemFields": [{ "name": "name" }, { "name": "entries" }, { "name": "dataSize" }, {
|
|
21
|
+
"name": "createdAt",
|
|
22
|
+
}, { "name": "updatedAt" }],
|
|
23
|
+
"outputFields": [{ "name": "nbPages" }],
|
|
24
|
+
"omitted": "index settings and provider-specific payload fields",
|
|
25
|
+
},
|
|
26
|
+
"amplitude__list_events": {
|
|
27
|
+
"collectionKeys": ["data", "events"],
|
|
28
|
+
"collectionName": "events",
|
|
29
|
+
"itemFields": [{ "name": "id" }, { "name": "value" }, { "name": "display" }, {
|
|
30
|
+
"name": "totals",
|
|
31
|
+
}, { "name": "non_active" }],
|
|
32
|
+
"omitted": "event property details and provider-specific payload fields",
|
|
33
|
+
},
|
|
34
|
+
"anthropic__list_api_keys": {
|
|
35
|
+
"collectionKeys": ["data"],
|
|
36
|
+
"collectionName": "api_keys",
|
|
37
|
+
"itemFields": [
|
|
38
|
+
{ "name": "id" },
|
|
39
|
+
{ "name": "name" },
|
|
40
|
+
{ "name": "status" },
|
|
41
|
+
{ "name": "workspace_id" },
|
|
42
|
+
{ "name": "created_at" },
|
|
43
|
+
{ "name": "partial_key_hint" },
|
|
44
|
+
],
|
|
45
|
+
"outputFields": [{ "name": "has_more" }, { "name": "last_id" }],
|
|
46
|
+
"omitted": "key creator details and provider-specific payload fields",
|
|
47
|
+
},
|
|
48
|
+
"anthropic__list_members": {
|
|
49
|
+
"collectionKeys": ["data"],
|
|
50
|
+
"collectionName": "members",
|
|
51
|
+
"itemFields": [{ "name": "id" }, { "name": "email" }, { "name": "name" }, { "name": "role" }, {
|
|
52
|
+
"name": "added_at",
|
|
53
|
+
}],
|
|
54
|
+
"outputFields": [{ "name": "has_more" }, { "name": "last_id" }],
|
|
55
|
+
"omitted": "provider-specific payload fields",
|
|
56
|
+
},
|
|
57
|
+
"anthropic__list_workspaces": {
|
|
58
|
+
"collectionKeys": ["data"],
|
|
59
|
+
"collectionName": "workspaces",
|
|
60
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "created_at" }, {
|
|
61
|
+
"name": "archived_at",
|
|
62
|
+
}],
|
|
63
|
+
"outputFields": [{ "name": "has_more" }, { "name": "last_id" }],
|
|
64
|
+
"omitted": "workspace display colors and provider-specific payload fields",
|
|
65
|
+
},
|
|
66
|
+
"apify__list_actors": {
|
|
67
|
+
"collectionKeys": ["items"],
|
|
68
|
+
"collectionName": "actors",
|
|
69
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "username" }, {
|
|
70
|
+
"name": "title",
|
|
71
|
+
}, { "name": "modifiedAt" }],
|
|
72
|
+
"outputFields": [{ "name": "total" }, { "name": "offset" }],
|
|
73
|
+
"omitted": "actor stats, version details, and provider-specific payload fields",
|
|
74
|
+
},
|
|
75
|
+
"apollo__search_people": {
|
|
76
|
+
"collectionKeys": ["people", "contacts"],
|
|
77
|
+
"collectionName": "people",
|
|
78
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "title" }, { "name": "email" }, {
|
|
79
|
+
"name": "linkedin_url",
|
|
80
|
+
}, { "name": "organization", "kind": "object" }],
|
|
81
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
82
|
+
"omitted": "employment history and provider-specific payload fields",
|
|
83
|
+
},
|
|
2
84
|
"asana__list_projects": {
|
|
3
85
|
"collectionKeys": ["data", "projects"],
|
|
4
86
|
"collectionName": "projects",
|
|
@@ -183,6 +265,588 @@ export const historicalToolSummaries = {
|
|
|
183
265
|
],
|
|
184
266
|
"omitted": "workspaces details and provider-specific payload fields",
|
|
185
267
|
},
|
|
268
|
+
"ashby__list_candidates": {
|
|
269
|
+
"collectionKeys": ["results", "candidates"],
|
|
270
|
+
"collectionName": "candidates",
|
|
271
|
+
"itemFields": [
|
|
272
|
+
{ "name": "id" },
|
|
273
|
+
{ "name": "name" },
|
|
274
|
+
{ "name": "primaryEmailAddress", "kind": "object" },
|
|
275
|
+
{ "name": "position" },
|
|
276
|
+
{ "name": "company" },
|
|
277
|
+
{ "name": "createdAt" },
|
|
278
|
+
{ "name": "updatedAt" },
|
|
279
|
+
],
|
|
280
|
+
"outputFields": [{ "name": "nextCursor" }, { "name": "moreDataAvailable" }],
|
|
281
|
+
"omitted": "resume file handles, social links, and custom field values",
|
|
282
|
+
},
|
|
283
|
+
"assemblyai__list_transcripts": {
|
|
284
|
+
"collectionKeys": ["transcripts"],
|
|
285
|
+
"collectionName": "transcripts",
|
|
286
|
+
"itemFields": [{ "name": "id" }, { "name": "status" }, { "name": "created" }, {
|
|
287
|
+
"name": "audio_url",
|
|
288
|
+
"maxLength": 120,
|
|
289
|
+
}],
|
|
290
|
+
"outputFields": [{ "name": "page_details", "kind": "object" }],
|
|
291
|
+
"omitted": "resource URLs, errors, and provider-specific payload fields",
|
|
292
|
+
},
|
|
293
|
+
"attio__query_records": {
|
|
294
|
+
"collectionKeys": ["data", "records"],
|
|
295
|
+
"collectionName": "records",
|
|
296
|
+
"itemFields": [{ "name": "id", "kind": "object" }, { "name": "values", "kind": "object" }, {
|
|
297
|
+
"name": "web_url",
|
|
298
|
+
}, { "name": "created_at" }],
|
|
299
|
+
"omitted": "full attribute value histories and provider-specific payload fields",
|
|
300
|
+
},
|
|
301
|
+
"axiom__list_datasets": {
|
|
302
|
+
"collectionKeys": ["datasets"],
|
|
303
|
+
"collectionName": "datasets",
|
|
304
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "description" }, {
|
|
305
|
+
"name": "created",
|
|
306
|
+
}],
|
|
307
|
+
"omitted": "dataset ownership and retention metadata",
|
|
308
|
+
},
|
|
309
|
+
"basecamp__list_projects": {
|
|
310
|
+
"collectionKeys": ["projects"],
|
|
311
|
+
"collectionName": "projects",
|
|
312
|
+
"itemFields": [
|
|
313
|
+
{ "name": "id" },
|
|
314
|
+
{ "name": "name" },
|
|
315
|
+
{ "name": "description" },
|
|
316
|
+
{ "name": "status" },
|
|
317
|
+
{ "name": "app_url" },
|
|
318
|
+
{ "name": "created_at" },
|
|
319
|
+
{ "name": "updated_at" },
|
|
320
|
+
],
|
|
321
|
+
"outputFields": [{ "name": "page" }],
|
|
322
|
+
"omitted": "project dock tool references and provider-specific payload fields",
|
|
323
|
+
},
|
|
324
|
+
"basecamp__list_todolists": {
|
|
325
|
+
"collectionKeys": ["todolists"],
|
|
326
|
+
"collectionName": "todolists",
|
|
327
|
+
"itemFields": [
|
|
328
|
+
{ "name": "id" },
|
|
329
|
+
{ "name": "title" },
|
|
330
|
+
{ "name": "completed" },
|
|
331
|
+
{ "name": "completed_ratio" },
|
|
332
|
+
{ "name": "app_url" },
|
|
333
|
+
{ "name": "created_at" },
|
|
334
|
+
{ "name": "updated_at" },
|
|
335
|
+
],
|
|
336
|
+
"outputFields": [{ "name": "page" }],
|
|
337
|
+
"omitted": "list descriptions and provider-specific payload fields",
|
|
338
|
+
},
|
|
339
|
+
"basecamp__list_todos": {
|
|
340
|
+
"collectionKeys": ["todos"],
|
|
341
|
+
"collectionName": "todos",
|
|
342
|
+
"itemFields": [
|
|
343
|
+
{ "name": "id" },
|
|
344
|
+
{ "name": "content" },
|
|
345
|
+
{ "name": "completed" },
|
|
346
|
+
{ "name": "due_on" },
|
|
347
|
+
{ "name": "app_url" },
|
|
348
|
+
{ "name": "created_at" },
|
|
349
|
+
{ "name": "updated_at" },
|
|
350
|
+
{ "name": "assignees", "kind": "contact-array" },
|
|
351
|
+
],
|
|
352
|
+
"outputFields": [{ "name": "page" }],
|
|
353
|
+
"omitted": "to-do descriptions, comment counts, and provider-specific payload fields",
|
|
354
|
+
},
|
|
355
|
+
"betterstack__list_monitors": {
|
|
356
|
+
"collectionKeys": ["data"],
|
|
357
|
+
"collectionName": "monitors",
|
|
358
|
+
"itemFields": [{ "name": "id" }, { "name": "type" }, {
|
|
359
|
+
"name": "attributes",
|
|
360
|
+
"kind": "object",
|
|
361
|
+
}],
|
|
362
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
363
|
+
"omitted": "regional check configuration and notification settings",
|
|
364
|
+
},
|
|
365
|
+
"bitbucket__list_pull_requests": {
|
|
366
|
+
"collectionKeys": ["values", "pull_requests"],
|
|
367
|
+
"collectionName": "pull_requests",
|
|
368
|
+
"itemFields": [
|
|
369
|
+
{ "name": "id" },
|
|
370
|
+
{ "name": "title" },
|
|
371
|
+
{ "name": "state" },
|
|
372
|
+
{ "name": "created_on" },
|
|
373
|
+
{ "name": "updated_on" },
|
|
374
|
+
{ "name": "author", "kind": "contact" },
|
|
375
|
+
],
|
|
376
|
+
"outputFields": [{ "name": "next" }, { "name": "page" }, { "name": "pagelen" }, {
|
|
377
|
+
"name": "size",
|
|
378
|
+
}],
|
|
379
|
+
"omitted": "pull request descriptions, diffs, links, and provider-specific payload fields",
|
|
380
|
+
},
|
|
381
|
+
"bitbucket__list_repositories": {
|
|
382
|
+
"collectionKeys": ["values", "repositories"],
|
|
383
|
+
"collectionName": "repositories",
|
|
384
|
+
"itemFields": [
|
|
385
|
+
{ "name": "uuid" },
|
|
386
|
+
{ "name": "name" },
|
|
387
|
+
{ "name": "full_name" },
|
|
388
|
+
{ "name": "slug" },
|
|
389
|
+
{ "name": "is_private" },
|
|
390
|
+
{ "name": "language" },
|
|
391
|
+
{ "name": "created_on" },
|
|
392
|
+
{ "name": "updated_on" },
|
|
393
|
+
{ "name": "owner", "kind": "contact" },
|
|
394
|
+
],
|
|
395
|
+
"outputFields": [{ "name": "next" }, { "name": "page" }, { "name": "pagelen" }, {
|
|
396
|
+
"name": "size",
|
|
397
|
+
}],
|
|
398
|
+
"omitted": "repository links, clone URLs, and provider-specific payload fields",
|
|
399
|
+
},
|
|
400
|
+
"box__list_folder_items": {
|
|
401
|
+
"collectionKeys": ["entries"],
|
|
402
|
+
"collectionName": "items",
|
|
403
|
+
"itemFields": [{ "name": "id" }, { "name": "type" }, { "name": "name" }, { "name": "size" }, {
|
|
404
|
+
"name": "modified_at",
|
|
405
|
+
}, { "name": "created_at" }],
|
|
406
|
+
"outputFields": [{ "name": "total_count" }, { "name": "offset" }, { "name": "limit" }],
|
|
407
|
+
"omitted": "file metadata, shared links, and provider-specific payload fields",
|
|
408
|
+
},
|
|
409
|
+
"brevo__list_contacts": {
|
|
410
|
+
"collectionKeys": ["contacts"],
|
|
411
|
+
"collectionName": "contacts",
|
|
412
|
+
"itemFields": [
|
|
413
|
+
{ "name": "id" },
|
|
414
|
+
{ "name": "email" },
|
|
415
|
+
{ "name": "emailBlacklisted" },
|
|
416
|
+
{ "name": "createdAt" },
|
|
417
|
+
{ "name": "modifiedAt" },
|
|
418
|
+
{ "name": "attributes", "kind": "object" },
|
|
419
|
+
],
|
|
420
|
+
"outputFields": [{ "name": "count" }],
|
|
421
|
+
"omitted": "SMS details, list membership, and custom attribute values",
|
|
422
|
+
},
|
|
423
|
+
"browserbase__list_sessions": {
|
|
424
|
+
"collectionKeys": ["sessions"],
|
|
425
|
+
"collectionName": "sessions",
|
|
426
|
+
"itemFields": [
|
|
427
|
+
{ "name": "id" },
|
|
428
|
+
{ "name": "status" },
|
|
429
|
+
{ "name": "projectId" },
|
|
430
|
+
{ "name": "createdAt" },
|
|
431
|
+
{ "name": "expiresAt" },
|
|
432
|
+
{ "name": "region" },
|
|
433
|
+
],
|
|
434
|
+
"omitted": "connection URLs, browser settings, and provider-specific payload fields",
|
|
435
|
+
},
|
|
436
|
+
"buildkite__list_builds": {
|
|
437
|
+
"collectionKeys": ["builds"],
|
|
438
|
+
"collectionName": "builds",
|
|
439
|
+
"itemFields": [
|
|
440
|
+
{ "name": "number" },
|
|
441
|
+
{ "name": "state" },
|
|
442
|
+
{ "name": "branch" },
|
|
443
|
+
{ "name": "message" },
|
|
444
|
+
{ "name": "commit" },
|
|
445
|
+
{ "name": "web_url" },
|
|
446
|
+
],
|
|
447
|
+
"omitted": "job lists, agent metadata, and environment payloads",
|
|
448
|
+
},
|
|
449
|
+
"buildkite__list_pipelines": {
|
|
450
|
+
"collectionKeys": ["pipelines"],
|
|
451
|
+
"collectionName": "pipelines",
|
|
452
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "slug" }, {
|
|
453
|
+
"name": "repository",
|
|
454
|
+
}, { "name": "web_url" }],
|
|
455
|
+
"omitted": "pipeline step definitions and provider webhook settings",
|
|
456
|
+
},
|
|
457
|
+
"calendly__list_event_invitees": {
|
|
458
|
+
"collectionKeys": ["collection", "invitees"],
|
|
459
|
+
"collectionName": "invitees",
|
|
460
|
+
"itemFields": [
|
|
461
|
+
{ "name": "uri" },
|
|
462
|
+
{ "name": "name" },
|
|
463
|
+
{ "name": "email" },
|
|
464
|
+
{ "name": "status" },
|
|
465
|
+
{ "name": "created_at" },
|
|
466
|
+
],
|
|
467
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
468
|
+
"omitted": "invitee questions/answers and provider-specific payload fields",
|
|
469
|
+
},
|
|
470
|
+
"calendly__list_event_types": {
|
|
471
|
+
"collectionKeys": ["collection", "event_types"],
|
|
472
|
+
"collectionName": "event_types",
|
|
473
|
+
"itemFields": [
|
|
474
|
+
{ "name": "uri" },
|
|
475
|
+
{ "name": "name" },
|
|
476
|
+
{ "name": "slug" },
|
|
477
|
+
{ "name": "duration" },
|
|
478
|
+
{ "name": "active" },
|
|
479
|
+
{ "name": "scheduling_url" },
|
|
480
|
+
],
|
|
481
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
482
|
+
"omitted": "event type descriptions and provider-specific payload fields",
|
|
483
|
+
},
|
|
484
|
+
"calendly__list_scheduled_events": {
|
|
485
|
+
"collectionKeys": ["collection", "events"],
|
|
486
|
+
"collectionName": "events",
|
|
487
|
+
"itemFields": [
|
|
488
|
+
{ "name": "uri" },
|
|
489
|
+
{ "name": "name" },
|
|
490
|
+
{ "name": "status" },
|
|
491
|
+
{ "name": "start_time" },
|
|
492
|
+
{ "name": "end_time" },
|
|
493
|
+
{ "name": "event_type" },
|
|
494
|
+
],
|
|
495
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
496
|
+
"omitted": "location details and provider-specific payload fields",
|
|
497
|
+
},
|
|
498
|
+
"checkly__list_checks": {
|
|
499
|
+
"collectionKeys": ["checks"],
|
|
500
|
+
"collectionName": "checks",
|
|
501
|
+
"itemFields": [
|
|
502
|
+
{ "name": "id" },
|
|
503
|
+
{ "name": "name" },
|
|
504
|
+
{ "name": "checkType" },
|
|
505
|
+
{ "name": "activated" },
|
|
506
|
+
{ "name": "frequency" },
|
|
507
|
+
{ "name": "tags", "kind": "string-array" },
|
|
508
|
+
],
|
|
509
|
+
"omitted": "request/script definitions and alert channel settings",
|
|
510
|
+
},
|
|
511
|
+
"circleci__list_pipelines": {
|
|
512
|
+
"collectionKeys": ["items"],
|
|
513
|
+
"collectionName": "pipelines",
|
|
514
|
+
"itemFields": [
|
|
515
|
+
{ "name": "id" },
|
|
516
|
+
{ "name": "number" },
|
|
517
|
+
{ "name": "state" },
|
|
518
|
+
{ "name": "created_at" },
|
|
519
|
+
{ "name": "updated_at" },
|
|
520
|
+
{ "name": "vcs", "kind": "object" },
|
|
521
|
+
],
|
|
522
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
523
|
+
"omitted": "trigger details, pipeline parameters, and provider-specific payload fields",
|
|
524
|
+
},
|
|
525
|
+
"circleci__list_workflows": {
|
|
526
|
+
"collectionKeys": ["items"],
|
|
527
|
+
"collectionName": "workflows",
|
|
528
|
+
"itemFields": [
|
|
529
|
+
{ "name": "id" },
|
|
530
|
+
{ "name": "name" },
|
|
531
|
+
{ "name": "status" },
|
|
532
|
+
{ "name": "created_at" },
|
|
533
|
+
{ "name": "stopped_at" },
|
|
534
|
+
{ "name": "pipeline_number" },
|
|
535
|
+
],
|
|
536
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
537
|
+
"omitted": "workflow tags and provider-specific payload fields",
|
|
538
|
+
},
|
|
539
|
+
"clickhouse__list_organizations": {
|
|
540
|
+
"collectionKeys": ["result", "organizations"],
|
|
541
|
+
"collectionName": "organizations",
|
|
542
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "createdAt" }],
|
|
543
|
+
"omitted": "organization billing and configuration details",
|
|
544
|
+
},
|
|
545
|
+
"clickhouse__list_services": {
|
|
546
|
+
"collectionKeys": ["result", "services"],
|
|
547
|
+
"collectionName": "services",
|
|
548
|
+
"itemFields": [
|
|
549
|
+
{ "name": "id" },
|
|
550
|
+
{ "name": "name" },
|
|
551
|
+
{ "name": "state" },
|
|
552
|
+
{ "name": "provider" },
|
|
553
|
+
{ "name": "region" },
|
|
554
|
+
{ "name": "tier" },
|
|
555
|
+
{ "name": "createdAt" },
|
|
556
|
+
],
|
|
557
|
+
"omitted": "endpoint lists, IP access lists, and scaling configuration",
|
|
558
|
+
},
|
|
559
|
+
"clickup__list_tasks": {
|
|
560
|
+
"collectionKeys": ["tasks"],
|
|
561
|
+
"collectionName": "tasks",
|
|
562
|
+
"itemFields": [
|
|
563
|
+
{ "name": "id" },
|
|
564
|
+
{ "name": "name" },
|
|
565
|
+
{ "name": "status", "kind": "object" },
|
|
566
|
+
{ "name": "priority", "kind": "object" },
|
|
567
|
+
{ "name": "due_date" },
|
|
568
|
+
{ "name": "date_created" },
|
|
569
|
+
{ "name": "date_updated" },
|
|
570
|
+
{ "name": "url" },
|
|
571
|
+
{ "name": "assignees", "kind": "contact-array" },
|
|
572
|
+
],
|
|
573
|
+
"outputFields": [{ "name": "last_page" }],
|
|
574
|
+
"omitted": "task descriptions, custom fields, and provider-specific payload fields",
|
|
575
|
+
},
|
|
576
|
+
"close__list_leads": {
|
|
577
|
+
"collectionKeys": ["data"],
|
|
578
|
+
"collectionName": "leads",
|
|
579
|
+
"itemFields": [
|
|
580
|
+
{ "name": "id" },
|
|
581
|
+
{ "name": "display_name" },
|
|
582
|
+
{ "name": "name" },
|
|
583
|
+
{ "name": "status_label" },
|
|
584
|
+
{ "name": "url" },
|
|
585
|
+
{ "name": "date_created" },
|
|
586
|
+
{ "name": "date_updated" },
|
|
587
|
+
],
|
|
588
|
+
"outputFields": [{ "name": "has_more" }, { "name": "total_results" }],
|
|
589
|
+
"omitted": "lead contacts, addresses, custom fields, and provider-specific payload fields",
|
|
590
|
+
},
|
|
591
|
+
"cloudflare__list_dns_records": {
|
|
592
|
+
"collectionKeys": ["result"],
|
|
593
|
+
"collectionName": "dns_records",
|
|
594
|
+
"itemFields": [
|
|
595
|
+
{ "name": "id" },
|
|
596
|
+
{ "name": "type" },
|
|
597
|
+
{ "name": "name" },
|
|
598
|
+
{ "name": "content" },
|
|
599
|
+
{ "name": "proxied" },
|
|
600
|
+
{ "name": "ttl" },
|
|
601
|
+
{ "name": "modified_on" },
|
|
602
|
+
],
|
|
603
|
+
"outputFields": [{ "name": "result_info", "kind": "object" }],
|
|
604
|
+
"omitted": "record metadata and provider-specific payload fields",
|
|
605
|
+
},
|
|
606
|
+
"cloudflare__list_zones": {
|
|
607
|
+
"collectionKeys": ["result"],
|
|
608
|
+
"collectionName": "zones",
|
|
609
|
+
"itemFields": [
|
|
610
|
+
{ "name": "id" },
|
|
611
|
+
{ "name": "name" },
|
|
612
|
+
{ "name": "status" },
|
|
613
|
+
{ "name": "paused" },
|
|
614
|
+
{ "name": "created_on" },
|
|
615
|
+
{ "name": "modified_on" },
|
|
616
|
+
],
|
|
617
|
+
"outputFields": [{ "name": "result_info", "kind": "object" }],
|
|
618
|
+
"omitted": "name servers, plan details, and provider-specific payload fields",
|
|
619
|
+
},
|
|
620
|
+
"coda__list_docs": {
|
|
621
|
+
"collectionKeys": ["items"],
|
|
622
|
+
"collectionName": "docs",
|
|
623
|
+
"itemFields": [
|
|
624
|
+
{ "name": "id" },
|
|
625
|
+
{ "name": "name" },
|
|
626
|
+
{ "name": "browserLink" },
|
|
627
|
+
{ "name": "createdAt" },
|
|
628
|
+
{ "name": "updatedAt" },
|
|
629
|
+
{ "name": "owner", "kind": "contact" },
|
|
630
|
+
],
|
|
631
|
+
"outputFields": [{ "name": "nextPageToken" }, { "name": "nextPageLink" }],
|
|
632
|
+
"omitted": "doc icon, workspace, and provider-specific payload fields",
|
|
633
|
+
},
|
|
634
|
+
"coda__list_pages": {
|
|
635
|
+
"collectionKeys": ["items"],
|
|
636
|
+
"collectionName": "pages",
|
|
637
|
+
"itemFields": [
|
|
638
|
+
{ "name": "id" },
|
|
639
|
+
{ "name": "name" },
|
|
640
|
+
{ "name": "browserLink" },
|
|
641
|
+
{ "name": "contentType" },
|
|
642
|
+
{ "name": "createdAt" },
|
|
643
|
+
{ "name": "updatedAt" },
|
|
644
|
+
],
|
|
645
|
+
"outputFields": [{ "name": "nextPageToken" }, { "name": "nextPageLink" }],
|
|
646
|
+
"omitted": "page icon, parent/children references, and provider-specific payload fields",
|
|
647
|
+
},
|
|
648
|
+
"cohere__list_models": {
|
|
649
|
+
"collectionKeys": ["models"],
|
|
650
|
+
"collectionName": "models",
|
|
651
|
+
"itemFields": [{ "name": "name" }, { "name": "context_length" }, {
|
|
652
|
+
"name": "endpoints",
|
|
653
|
+
"kind": "string-array",
|
|
654
|
+
}, { "name": "is_deprecated" }],
|
|
655
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
656
|
+
"omitted": "tokenizer URLs, sampling defaults, and provider-specific payload fields",
|
|
657
|
+
},
|
|
658
|
+
"datadog__list_dashboards": {
|
|
659
|
+
"collectionKeys": ["dashboards"],
|
|
660
|
+
"collectionName": "dashboards",
|
|
661
|
+
"itemFields": [{ "name": "id" }, { "name": "title" }, { "name": "url" }, {
|
|
662
|
+
"name": "layout_type",
|
|
663
|
+
}, { "name": "modified_at" }],
|
|
664
|
+
"omitted": "dashboard widget definitions and provider-specific payload fields",
|
|
665
|
+
},
|
|
666
|
+
"datadog__list_monitors": {
|
|
667
|
+
"collectionKeys": ["monitors"],
|
|
668
|
+
"collectionName": "monitors",
|
|
669
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "type" }, {
|
|
670
|
+
"name": "overall_state",
|
|
671
|
+
}, { "name": "tags", "kind": "string-array" }],
|
|
672
|
+
"omitted": "monitor query definitions and provider-specific payload fields",
|
|
673
|
+
},
|
|
674
|
+
"deepgram__list_projects": {
|
|
675
|
+
"collectionKeys": ["projects"],
|
|
676
|
+
"collectionName": "projects",
|
|
677
|
+
"itemFields": [{ "name": "project_id" }, { "name": "name" }],
|
|
678
|
+
"omitted": "company metadata and provider-specific payload fields",
|
|
679
|
+
},
|
|
680
|
+
"dialpad__list_contacts": {
|
|
681
|
+
"collectionKeys": ["items"],
|
|
682
|
+
"collectionName": "contacts",
|
|
683
|
+
"itemFields": [
|
|
684
|
+
{ "name": "id" },
|
|
685
|
+
{ "name": "display_name" },
|
|
686
|
+
{ "name": "first_name" },
|
|
687
|
+
{ "name": "last_name" },
|
|
688
|
+
{ "name": "emails", "kind": "string-array" },
|
|
689
|
+
{ "name": "phones", "kind": "string-array" },
|
|
690
|
+
{ "name": "company_name" },
|
|
691
|
+
],
|
|
692
|
+
"outputFields": [{ "name": "cursor" }],
|
|
693
|
+
"omitted": "contact details and provider-specific payload fields",
|
|
694
|
+
},
|
|
695
|
+
"digitalocean__list_databases": {
|
|
696
|
+
"collectionKeys": ["databases"],
|
|
697
|
+
"collectionName": "databases",
|
|
698
|
+
"itemFields": [
|
|
699
|
+
{ "name": "id" },
|
|
700
|
+
{ "name": "name" },
|
|
701
|
+
{ "name": "engine" },
|
|
702
|
+
{ "name": "version" },
|
|
703
|
+
{ "name": "status" },
|
|
704
|
+
{ "name": "created_at" },
|
|
705
|
+
{ "name": "tags", "kind": "string-array" },
|
|
706
|
+
],
|
|
707
|
+
"outputFields": [],
|
|
708
|
+
"omitted": "connection credentials, maintenance windows, and provider-specific payload fields",
|
|
709
|
+
},
|
|
710
|
+
"digitalocean__list_droplets": {
|
|
711
|
+
"collectionKeys": ["droplets"],
|
|
712
|
+
"collectionName": "droplets",
|
|
713
|
+
"itemFields": [
|
|
714
|
+
{ "name": "id" },
|
|
715
|
+
{ "name": "name" },
|
|
716
|
+
{ "name": "status" },
|
|
717
|
+
{ "name": "memory" },
|
|
718
|
+
{ "name": "vcpus" },
|
|
719
|
+
{ "name": "created_at" },
|
|
720
|
+
{ "name": "tags", "kind": "string-array" },
|
|
721
|
+
],
|
|
722
|
+
"outputFields": [{ "name": "links", "kind": "object" }, { "name": "meta", "kind": "object" }],
|
|
723
|
+
"omitted": "network interfaces, image details, and provider-specific payload fields",
|
|
724
|
+
},
|
|
725
|
+
"elevenlabs__list_voices": {
|
|
726
|
+
"collectionKeys": ["voices"],
|
|
727
|
+
"collectionName": "voices",
|
|
728
|
+
"itemFields": [{ "name": "voice_id" }, { "name": "name" }, { "name": "category" }],
|
|
729
|
+
"outputFields": [{ "name": "next_page_token" }],
|
|
730
|
+
"omitted": "voice settings, previews, and provider-specific payload fields",
|
|
731
|
+
},
|
|
732
|
+
"exa__search": {
|
|
733
|
+
"collectionKeys": ["results"],
|
|
734
|
+
"collectionName": "results",
|
|
735
|
+
"itemFields": [{ "name": "id" }, { "name": "title" }, { "name": "url" }, {
|
|
736
|
+
"name": "publishedDate",
|
|
737
|
+
}, { "name": "author" }],
|
|
738
|
+
"omitted": "page text, highlights, and provider-specific payload fields",
|
|
739
|
+
},
|
|
740
|
+
"fathom__list_meetings": {
|
|
741
|
+
"collectionKeys": ["items", "meetings"],
|
|
742
|
+
"collectionName": "meetings",
|
|
743
|
+
"itemFields": [
|
|
744
|
+
{ "name": "title" },
|
|
745
|
+
{ "name": "meeting_title" },
|
|
746
|
+
{ "name": "recording_id" },
|
|
747
|
+
{ "name": "url" },
|
|
748
|
+
{ "name": "created_at" },
|
|
749
|
+
{ "name": "recording_start_time" },
|
|
750
|
+
{ "name": "recording_end_time" },
|
|
751
|
+
{ "name": "calendar_invitees", "kind": "contact-array" },
|
|
752
|
+
],
|
|
753
|
+
"outputFields": [{ "name": "next_cursor" }, { "name": "limit" }],
|
|
754
|
+
"omitted": "transcripts, summaries, action items, and CRM matches",
|
|
755
|
+
},
|
|
756
|
+
"firecrawl__search": {
|
|
757
|
+
"collectionKeys": ["data.web", "data"],
|
|
758
|
+
"collectionName": "results",
|
|
759
|
+
"itemFields": [{ "name": "title" }, { "name": "url" }, {
|
|
760
|
+
"name": "description",
|
|
761
|
+
"maxLength": 300,
|
|
762
|
+
}],
|
|
763
|
+
"outputFields": [{ "name": "creditsUsed" }],
|
|
764
|
+
"omitted": "scraped page content and provider-specific payload fields",
|
|
765
|
+
},
|
|
766
|
+
"fireflies__list_transcripts": {
|
|
767
|
+
"collectionKeys": ["transcripts", "data"],
|
|
768
|
+
"collectionName": "transcripts",
|
|
769
|
+
"itemFields": [
|
|
770
|
+
{ "name": "id" },
|
|
771
|
+
{ "name": "title" },
|
|
772
|
+
{ "name": "date" },
|
|
773
|
+
{ "name": "duration" },
|
|
774
|
+
{ "name": "organizer_email", "kind": "contact" },
|
|
775
|
+
{ "name": "participants", "kind": "contact-array" },
|
|
776
|
+
{ "name": "transcript_url" },
|
|
777
|
+
],
|
|
778
|
+
"outputFields": [{ "name": "skip" }],
|
|
779
|
+
"omitted": "sentences, summaries, and audio/video URLs",
|
|
780
|
+
},
|
|
781
|
+
"fireworks-ai__list_models": {
|
|
782
|
+
"collectionKeys": ["data", "models"],
|
|
783
|
+
"collectionName": "models",
|
|
784
|
+
"itemFields": [{ "name": "id" }, { "name": "owned_by" }, { "name": "created" }],
|
|
785
|
+
"omitted": "model capability details and provider-specific payload fields",
|
|
786
|
+
},
|
|
787
|
+
"fly-io__list_apps": {
|
|
788
|
+
"collectionKeys": ["apps"],
|
|
789
|
+
"collectionName": "apps",
|
|
790
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "machine_count" }, {
|
|
791
|
+
"name": "network",
|
|
792
|
+
}],
|
|
793
|
+
"outputFields": [{ "name": "total_apps" }],
|
|
794
|
+
"omitted": "app details and provider-specific payload fields",
|
|
795
|
+
},
|
|
796
|
+
"fly-io__list_machines": {
|
|
797
|
+
"collectionKeys": ["machines"],
|
|
798
|
+
"collectionName": "machines",
|
|
799
|
+
"itemFields": [
|
|
800
|
+
{ "name": "id" },
|
|
801
|
+
{ "name": "name" },
|
|
802
|
+
{ "name": "state" },
|
|
803
|
+
{ "name": "region" },
|
|
804
|
+
{ "name": "instance_id" },
|
|
805
|
+
{ "name": "created_at" },
|
|
806
|
+
{ "name": "updated_at" },
|
|
807
|
+
],
|
|
808
|
+
"omitted": "machine config, image refs, and provider-specific payload fields",
|
|
809
|
+
},
|
|
810
|
+
"folk__list_people": {
|
|
811
|
+
"collectionKeys": ["items"],
|
|
812
|
+
"collectionName": "people",
|
|
813
|
+
"itemFields": [
|
|
814
|
+
{ "name": "id" },
|
|
815
|
+
{ "name": "fullName" },
|
|
816
|
+
{ "name": "firstName" },
|
|
817
|
+
{ "name": "lastName" },
|
|
818
|
+
{ "name": "jobTitle" },
|
|
819
|
+
{ "name": "emails", "kind": "string-array" },
|
|
820
|
+
],
|
|
821
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
822
|
+
"omitted": "custom fields, group memberships, and provider-specific payload fields",
|
|
823
|
+
},
|
|
824
|
+
"freshdesk__list_tickets": {
|
|
825
|
+
"collectionKeys": ["tickets", "data"],
|
|
826
|
+
"collectionName": "tickets",
|
|
827
|
+
"itemFields": [
|
|
828
|
+
{ "name": "id" },
|
|
829
|
+
{ "name": "subject" },
|
|
830
|
+
{ "name": "status" },
|
|
831
|
+
{ "name": "priority" },
|
|
832
|
+
{ "name": "type" },
|
|
833
|
+
{ "name": "requester_id" },
|
|
834
|
+
{ "name": "created_at" },
|
|
835
|
+
{ "name": "updated_at" },
|
|
836
|
+
{ "name": "due_by" },
|
|
837
|
+
],
|
|
838
|
+
"outputFields": [{ "name": "page" }],
|
|
839
|
+
"omitted": "ticket descriptions, conversations, and provider-specific payload fields",
|
|
840
|
+
},
|
|
841
|
+
"gemini__list_models": {
|
|
842
|
+
"collectionKeys": ["models"],
|
|
843
|
+
"collectionName": "models",
|
|
844
|
+
"itemFields": [{ "name": "name" }, { "name": "displayName" }, { "name": "inputTokenLimit" }, {
|
|
845
|
+
"name": "outputTokenLimit",
|
|
846
|
+
}],
|
|
847
|
+
"outputFields": [{ "name": "nextPageToken" }],
|
|
848
|
+
"omitted": "model capability details and provider-specific payload fields",
|
|
849
|
+
},
|
|
186
850
|
"github__get_issue": {
|
|
187
851
|
"collectionKeys": ["issue", "data"],
|
|
188
852
|
"collectionName": "issues",
|
|
@@ -370,6 +1034,84 @@ export const historicalToolSummaries = {
|
|
|
370
1034
|
"outputFields": [{ "name": "nextPageToken" }, { "name": "resultSizeEstimate" }],
|
|
371
1035
|
"omitted": "large email bodies and provider-specific payload fields",
|
|
372
1036
|
},
|
|
1037
|
+
"gong__list_calls": {
|
|
1038
|
+
"collectionKeys": ["calls"],
|
|
1039
|
+
"collectionName": "calls",
|
|
1040
|
+
"itemFields": [
|
|
1041
|
+
{ "name": "id" },
|
|
1042
|
+
{ "name": "title" },
|
|
1043
|
+
{ "name": "started" },
|
|
1044
|
+
{ "name": "duration" },
|
|
1045
|
+
{ "name": "direction" },
|
|
1046
|
+
{ "name": "primaryUserId" },
|
|
1047
|
+
{ "name": "url" },
|
|
1048
|
+
],
|
|
1049
|
+
"outputFields": [{ "name": "records", "kind": "object" }],
|
|
1050
|
+
"omitted": "media URLs, parties, and call system metadata",
|
|
1051
|
+
},
|
|
1052
|
+
"google-analytics__list_account_summaries": {
|
|
1053
|
+
"collectionKeys": ["accountSummaries"],
|
|
1054
|
+
"collectionName": "accountSummaries",
|
|
1055
|
+
"itemFields": [{ "name": "account" }, { "name": "displayName" }, {
|
|
1056
|
+
"name": "propertySummaries",
|
|
1057
|
+
"kind": "object",
|
|
1058
|
+
}],
|
|
1059
|
+
"outputFields": [{ "name": "nextPageToken" }],
|
|
1060
|
+
"omitted": "property detail fields beyond names and IDs",
|
|
1061
|
+
},
|
|
1062
|
+
"google-chat__list_messages": {
|
|
1063
|
+
"collectionKeys": ["messages"],
|
|
1064
|
+
"collectionName": "messages",
|
|
1065
|
+
"itemFields": [
|
|
1066
|
+
{ "name": "name" },
|
|
1067
|
+
{ "name": "text", "maxLength": 300 },
|
|
1068
|
+
{ "name": "sender", "kind": "contact" },
|
|
1069
|
+
{ "name": "createTime" },
|
|
1070
|
+
{ "name": "thread", "kind": "object" },
|
|
1071
|
+
],
|
|
1072
|
+
"outputFields": [{ "name": "nextPageToken" }],
|
|
1073
|
+
"omitted": "cards, annotations, and provider-specific payload fields",
|
|
1074
|
+
},
|
|
1075
|
+
"google-chat__list_spaces": {
|
|
1076
|
+
"collectionKeys": ["spaces"],
|
|
1077
|
+
"collectionName": "spaces",
|
|
1078
|
+
"itemFields": [{ "name": "name" }, { "name": "displayName" }, { "name": "spaceType" }, {
|
|
1079
|
+
"name": "singleUserBotDm",
|
|
1080
|
+
}, { "name": "createTime" }],
|
|
1081
|
+
"outputFields": [{ "name": "nextPageToken" }],
|
|
1082
|
+
"omitted": "space details and provider-specific payload fields",
|
|
1083
|
+
},
|
|
1084
|
+
"grafana-cloud__search_dashboards": {
|
|
1085
|
+
"collectionKeys": ["dashboards"],
|
|
1086
|
+
"collectionName": "dashboards",
|
|
1087
|
+
"itemFields": [{ "name": "uid" }, { "name": "title" }, { "name": "type" }, { "name": "url" }, {
|
|
1088
|
+
"name": "folderTitle",
|
|
1089
|
+
}, { "name": "tags", "kind": "string-array" }],
|
|
1090
|
+
"omitted": "numeric IDs and starring metadata",
|
|
1091
|
+
},
|
|
1092
|
+
"groq__list_models": {
|
|
1093
|
+
"collectionKeys": ["data", "models"],
|
|
1094
|
+
"collectionName": "models",
|
|
1095
|
+
"itemFields": [{ "name": "id" }, { "name": "owned_by" }, { "name": "context_window" }, {
|
|
1096
|
+
"name": "active",
|
|
1097
|
+
}],
|
|
1098
|
+
"omitted": "model capability details and provider-specific payload fields",
|
|
1099
|
+
},
|
|
1100
|
+
"gusto__list_employees": {
|
|
1101
|
+
"collectionKeys": ["employees", "data"],
|
|
1102
|
+
"collectionName": "employees",
|
|
1103
|
+
"itemFields": [
|
|
1104
|
+
{ "name": "uuid" },
|
|
1105
|
+
{ "name": "first_name" },
|
|
1106
|
+
{ "name": "last_name" },
|
|
1107
|
+
{ "name": "email" },
|
|
1108
|
+
{ "name": "department" },
|
|
1109
|
+
{ "name": "terminated" },
|
|
1110
|
+
{ "name": "manager_uuid" },
|
|
1111
|
+
],
|
|
1112
|
+
"outputFields": [{ "name": "page" }, { "name": "per" }],
|
|
1113
|
+
"omitted": "compensation, home address, and job history details",
|
|
1114
|
+
},
|
|
373
1115
|
"harvest__invoice_report": {
|
|
374
1116
|
"collectionKeys": ["results", "data"],
|
|
375
1117
|
"collectionName": "invoiceReports",
|
|
@@ -651,6 +1393,74 @@ export const historicalToolSummaries = {
|
|
|
651
1393
|
],
|
|
652
1394
|
"omitted": "team report details and provider-specific payload fields",
|
|
653
1395
|
},
|
|
1396
|
+
"heroku__list_apps": {
|
|
1397
|
+
"collectionKeys": ["apps"],
|
|
1398
|
+
"collectionName": "apps",
|
|
1399
|
+
"itemFields": [
|
|
1400
|
+
{ "name": "id" },
|
|
1401
|
+
{ "name": "name" },
|
|
1402
|
+
{ "name": "web_url" },
|
|
1403
|
+
{ "name": "maintenance" },
|
|
1404
|
+
{ "name": "region", "kind": "object" },
|
|
1405
|
+
{ "name": "created_at" },
|
|
1406
|
+
{ "name": "updated_at" },
|
|
1407
|
+
{ "name": "owner", "kind": "contact" },
|
|
1408
|
+
],
|
|
1409
|
+
"omitted": "stack, buildpack, and provider-specific payload fields",
|
|
1410
|
+
},
|
|
1411
|
+
"heroku__list_dynos": {
|
|
1412
|
+
"collectionKeys": ["dynos"],
|
|
1413
|
+
"collectionName": "dynos",
|
|
1414
|
+
"itemFields": [
|
|
1415
|
+
{ "name": "id" },
|
|
1416
|
+
{ "name": "name" },
|
|
1417
|
+
{ "name": "type" },
|
|
1418
|
+
{ "name": "state" },
|
|
1419
|
+
{ "name": "size" },
|
|
1420
|
+
{ "name": "command", "maxLength": 200 },
|
|
1421
|
+
{ "name": "created_at" },
|
|
1422
|
+
{ "name": "updated_at" },
|
|
1423
|
+
],
|
|
1424
|
+
"omitted": "release references and provider-specific payload fields",
|
|
1425
|
+
},
|
|
1426
|
+
"heroku__list_releases": {
|
|
1427
|
+
"collectionKeys": ["releases"],
|
|
1428
|
+
"collectionName": "releases",
|
|
1429
|
+
"itemFields": [
|
|
1430
|
+
{ "name": "id" },
|
|
1431
|
+
{ "name": "version" },
|
|
1432
|
+
{ "name": "status" },
|
|
1433
|
+
{ "name": "description", "maxLength": 200 },
|
|
1434
|
+
{ "name": "current" },
|
|
1435
|
+
{ "name": "created_at" },
|
|
1436
|
+
{ "name": "user", "kind": "contact" },
|
|
1437
|
+
],
|
|
1438
|
+
"omitted": "slug references and provider-specific payload fields",
|
|
1439
|
+
},
|
|
1440
|
+
"huggingface__search_models": {
|
|
1441
|
+
"collectionKeys": ["models"],
|
|
1442
|
+
"collectionName": "models",
|
|
1443
|
+
"itemFields": [{ "name": "id" }, { "name": "pipeline_tag" }, { "name": "downloads" }, {
|
|
1444
|
+
"name": "likes",
|
|
1445
|
+
}],
|
|
1446
|
+
"omitted": "tags, timestamps, and provider-specific payload fields",
|
|
1447
|
+
},
|
|
1448
|
+
"intercom__list_contacts": {
|
|
1449
|
+
"collectionKeys": ["data", "contacts"],
|
|
1450
|
+
"collectionName": "contacts",
|
|
1451
|
+
"itemFields": [
|
|
1452
|
+
{ "name": "id" },
|
|
1453
|
+
{ "name": "role" },
|
|
1454
|
+
{ "name": "email" },
|
|
1455
|
+
{ "name": "name" },
|
|
1456
|
+
{ "name": "phone" },
|
|
1457
|
+
{ "name": "created_at" },
|
|
1458
|
+
{ "name": "updated_at" },
|
|
1459
|
+
{ "name": "last_seen_at" },
|
|
1460
|
+
],
|
|
1461
|
+
"outputFields": [{ "name": "total_count" }, { "name": "pages", "kind": "object" }],
|
|
1462
|
+
"omitted": "custom attributes, company associations, and provider-specific payload fields",
|
|
1463
|
+
},
|
|
654
1464
|
"jira__list_comments": {
|
|
655
1465
|
"collectionKeys": ["comments", "data"],
|
|
656
1466
|
"collectionName": "comments",
|
|
@@ -755,6 +1565,101 @@ export const historicalToolSummaries = {
|
|
|
755
1565
|
"outputFields": [{ "name": "total" }, { "name": "startAt" }, { "name": "maxResults" }],
|
|
756
1566
|
"omitted": "issue descriptions, comments, changelog, and provider-specific payload fields",
|
|
757
1567
|
},
|
|
1568
|
+
"jira__search_users": {
|
|
1569
|
+
"collectionKeys": ["users", "values"],
|
|
1570
|
+
"collectionName": "users",
|
|
1571
|
+
"itemFields": [{ "name": "accountId" }, { "name": "displayName" }, { "name": "emailAddress" }, {
|
|
1572
|
+
"name": "active",
|
|
1573
|
+
}, { "name": "accountType" }],
|
|
1574
|
+
"omitted": "avatar URLs, timezone, and provider-specific profile fields",
|
|
1575
|
+
},
|
|
1576
|
+
"jotform__list_forms": {
|
|
1577
|
+
"collectionKeys": ["content", "forms"],
|
|
1578
|
+
"collectionName": "forms",
|
|
1579
|
+
"itemFields": [
|
|
1580
|
+
{ "name": "id" },
|
|
1581
|
+
{ "name": "title" },
|
|
1582
|
+
{ "name": "status" },
|
|
1583
|
+
{ "name": "count" },
|
|
1584
|
+
{ "name": "new" },
|
|
1585
|
+
{ "name": "created_at" },
|
|
1586
|
+
{ "name": "updated_at" },
|
|
1587
|
+
{ "name": "url" },
|
|
1588
|
+
],
|
|
1589
|
+
"outputFields": [{ "name": "resultSet", "kind": "object" }],
|
|
1590
|
+
"omitted": "form layout and per-form settings",
|
|
1591
|
+
},
|
|
1592
|
+
"klaviyo__list_lists": {
|
|
1593
|
+
"collectionKeys": ["data", "lists"],
|
|
1594
|
+
"collectionName": "lists",
|
|
1595
|
+
"itemFields": [{ "name": "id" }, { "name": "attributes", "kind": "object" }],
|
|
1596
|
+
"outputFields": [{ "name": "next" }],
|
|
1597
|
+
"omitted": "list metadata beyond name and created/updated timestamps",
|
|
1598
|
+
},
|
|
1599
|
+
"klaviyo__list_profiles": {
|
|
1600
|
+
"collectionKeys": ["data", "profiles"],
|
|
1601
|
+
"collectionName": "profiles",
|
|
1602
|
+
"itemFields": [{ "name": "id" }, { "name": "attributes", "kind": "object" }],
|
|
1603
|
+
"outputFields": [{ "name": "next" }],
|
|
1604
|
+
"omitted": "profile location/subscription detail fields",
|
|
1605
|
+
},
|
|
1606
|
+
"langfuse__list_traces": {
|
|
1607
|
+
"collectionKeys": ["data"],
|
|
1608
|
+
"collectionName": "traces",
|
|
1609
|
+
"itemFields": [
|
|
1610
|
+
{ "name": "id" },
|
|
1611
|
+
{ "name": "name" },
|
|
1612
|
+
{ "name": "timestamp" },
|
|
1613
|
+
{ "name": "userId" },
|
|
1614
|
+
{ "name": "sessionId" },
|
|
1615
|
+
{ "name": "tags", "kind": "string-array" },
|
|
1616
|
+
],
|
|
1617
|
+
"outputFields": [{ "name": "meta", "kind": "object" }],
|
|
1618
|
+
"omitted": "trace input/output payloads, costs, and provider-specific payload fields",
|
|
1619
|
+
},
|
|
1620
|
+
"langsmith__list_projects": {
|
|
1621
|
+
"collectionKeys": ["sessions"],
|
|
1622
|
+
"collectionName": "projects",
|
|
1623
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "start_time" }, {
|
|
1624
|
+
"name": "last_run_start_time",
|
|
1625
|
+
}, { "name": "run_count" }],
|
|
1626
|
+
"omitted": "feedback statistics and provider-specific payload fields",
|
|
1627
|
+
},
|
|
1628
|
+
"launchdarkly__list_flags": {
|
|
1629
|
+
"collectionKeys": ["items"],
|
|
1630
|
+
"collectionName": "feature flags",
|
|
1631
|
+
"itemFields": [{ "name": "key" }, { "name": "name" }, { "name": "kind" }, {
|
|
1632
|
+
"name": "archived",
|
|
1633
|
+
}, { "name": "tags", "kind": "string-array" }],
|
|
1634
|
+
"outputFields": [{ "name": "totalCount" }],
|
|
1635
|
+
"omitted": "variations, per-environment configuration, and link metadata",
|
|
1636
|
+
},
|
|
1637
|
+
"lever__list_opportunities": {
|
|
1638
|
+
"collectionKeys": ["data", "opportunities"],
|
|
1639
|
+
"collectionName": "opportunities",
|
|
1640
|
+
"itemFields": [
|
|
1641
|
+
{ "name": "id" },
|
|
1642
|
+
{ "name": "name" },
|
|
1643
|
+
{ "name": "emails", "kind": "string-array" },
|
|
1644
|
+
{ "name": "stage" },
|
|
1645
|
+
{ "name": "origin" },
|
|
1646
|
+
{ "name": "tags", "kind": "string-array" },
|
|
1647
|
+
{ "name": "createdAt" },
|
|
1648
|
+
{ "name": "lastInteractionAt" },
|
|
1649
|
+
{ "name": "urls", "kind": "object" },
|
|
1650
|
+
],
|
|
1651
|
+
"outputFields": [{ "name": "hasNext" }, { "name": "next" }],
|
|
1652
|
+
"omitted": "applications, resumes, and contact metadata",
|
|
1653
|
+
},
|
|
1654
|
+
"linear__list_issue_labels": {
|
|
1655
|
+
"collectionKeys": ["issueLabels", "nodes", "data"],
|
|
1656
|
+
"collectionName": "issueLabels",
|
|
1657
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "color" }, {
|
|
1658
|
+
"name": "description",
|
|
1659
|
+
}],
|
|
1660
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
1661
|
+
"omitted": "label team details and provider-specific payload fields",
|
|
1662
|
+
},
|
|
758
1663
|
"linear__list_projects": {
|
|
759
1664
|
"collectionKeys": ["projects", "nodes", "data"],
|
|
760
1665
|
"collectionName": "projects",
|
|
@@ -882,21 +1787,204 @@ export const historicalToolSummaries = {
|
|
|
882
1787
|
],
|
|
883
1788
|
"omitted": "workflowStates details and provider-specific payload fields",
|
|
884
1789
|
},
|
|
885
|
-
"linear__search_issues": {
|
|
886
|
-
"collectionKeys": ["searchIssues", "issues", "nodes", "data"],
|
|
887
|
-
"collectionName": "issues",
|
|
1790
|
+
"linear__search_issues": {
|
|
1791
|
+
"collectionKeys": ["searchIssues", "issues", "nodes", "data"],
|
|
1792
|
+
"collectionName": "issues",
|
|
1793
|
+
"itemFields": [
|
|
1794
|
+
{ "name": "id" },
|
|
1795
|
+
{ "name": "identifier" },
|
|
1796
|
+
{ "name": "title" },
|
|
1797
|
+
{ "name": "state", "kind": "object" },
|
|
1798
|
+
{ "name": "assignee", "kind": "contact" },
|
|
1799
|
+
{ "name": "url" },
|
|
1800
|
+
{ "name": "createdAt" },
|
|
1801
|
+
{ "name": "updatedAt" },
|
|
1802
|
+
],
|
|
1803
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
1804
|
+
"omitted": "issue descriptions, comments, and provider-specific payload fields",
|
|
1805
|
+
},
|
|
1806
|
+
"mailchimp__list_audiences": {
|
|
1807
|
+
"collectionKeys": ["lists"],
|
|
1808
|
+
"collectionName": "audiences",
|
|
1809
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "date_created" }, {
|
|
1810
|
+
"name": "stats",
|
|
1811
|
+
"kind": "object",
|
|
1812
|
+
}],
|
|
1813
|
+
"outputFields": [{ "name": "total_items" }],
|
|
1814
|
+
"omitted": "audience defaults, campaign settings, and provider-specific payload fields",
|
|
1815
|
+
},
|
|
1816
|
+
"metabase__list_databases": {
|
|
1817
|
+
"collectionKeys": ["data"],
|
|
1818
|
+
"collectionName": "databases",
|
|
1819
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "engine" }, {
|
|
1820
|
+
"name": "created_at",
|
|
1821
|
+
}, { "name": "updated_at" }],
|
|
1822
|
+
"outputFields": [{ "name": "total" }],
|
|
1823
|
+
"omitted": "connection details and provider-specific payload fields",
|
|
1824
|
+
},
|
|
1825
|
+
"mistral__list_models": {
|
|
1826
|
+
"collectionKeys": ["data", "models"],
|
|
1827
|
+
"collectionName": "models",
|
|
1828
|
+
"itemFields": [{ "name": "id" }, { "name": "owned_by" }, { "name": "created" }, {
|
|
1829
|
+
"name": "max_context_length",
|
|
1830
|
+
}],
|
|
1831
|
+
"omitted": "model capability details and provider-specific payload fields",
|
|
1832
|
+
},
|
|
1833
|
+
"mixpanel__list_cohorts": {
|
|
1834
|
+
"collectionKeys": ["cohorts"],
|
|
1835
|
+
"collectionName": "cohorts",
|
|
1836
|
+
"itemFields": [
|
|
1837
|
+
{ "name": "id" },
|
|
1838
|
+
{ "name": "name" },
|
|
1839
|
+
{ "name": "count" },
|
|
1840
|
+
{ "name": "created" },
|
|
1841
|
+
{ "name": "is_visible" },
|
|
1842
|
+
],
|
|
1843
|
+
"omitted": "cohort descriptions and provider-specific payload fields",
|
|
1844
|
+
},
|
|
1845
|
+
"monday__list_boards": {
|
|
1846
|
+
"collectionKeys": ["boards", "data"],
|
|
1847
|
+
"collectionName": "boards",
|
|
1848
|
+
"itemFields": [
|
|
1849
|
+
{ "name": "id" },
|
|
1850
|
+
{ "name": "name" },
|
|
1851
|
+
{ "name": "state" },
|
|
1852
|
+
{ "name": "board_kind" },
|
|
1853
|
+
{ "name": "items_count" },
|
|
1854
|
+
{ "name": "workspace", "kind": "object" },
|
|
1855
|
+
],
|
|
1856
|
+
"outputFields": [{ "name": "page" }],
|
|
1857
|
+
"omitted": "board descriptions, groups, and provider-specific payload fields",
|
|
1858
|
+
},
|
|
1859
|
+
"mongodb-atlas__list_clusters": {
|
|
1860
|
+
"collectionKeys": ["results"],
|
|
1861
|
+
"collectionName": "clusters",
|
|
1862
|
+
"itemFields": [
|
|
1863
|
+
{ "name": "id" },
|
|
1864
|
+
{ "name": "name" },
|
|
1865
|
+
{ "name": "stateName" },
|
|
1866
|
+
{ "name": "clusterType" },
|
|
1867
|
+
{ "name": "mongoDBVersion" },
|
|
1868
|
+
{ "name": "paused" },
|
|
1869
|
+
{ "name": "createDate" },
|
|
1870
|
+
],
|
|
1871
|
+
"outputFields": [{ "name": "totalCount" }],
|
|
1872
|
+
"omitted": "replication specs, connection strings, and provider-specific payload fields",
|
|
1873
|
+
},
|
|
1874
|
+
"mongodb-atlas__list_database_users": {
|
|
1875
|
+
"collectionKeys": ["results"],
|
|
1876
|
+
"collectionName": "database_users",
|
|
1877
|
+
"itemFields": [
|
|
1878
|
+
{ "name": "username" },
|
|
1879
|
+
{ "name": "databaseName" },
|
|
1880
|
+
{ "name": "roles", "kind": "object" },
|
|
1881
|
+
{ "name": "awsIAMType" },
|
|
1882
|
+
{ "name": "x509Type" },
|
|
1883
|
+
],
|
|
1884
|
+
"outputFields": [{ "name": "totalCount" }],
|
|
1885
|
+
"omitted": "scopes, labels, and provider-specific payload fields",
|
|
1886
|
+
},
|
|
1887
|
+
"mongodb-atlas__list_projects": {
|
|
1888
|
+
"collectionKeys": ["results"],
|
|
1889
|
+
"collectionName": "projects",
|
|
1890
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "orgId" }, {
|
|
1891
|
+
"name": "clusterCount",
|
|
1892
|
+
}, { "name": "created" }],
|
|
1893
|
+
"outputFields": [{ "name": "totalCount" }],
|
|
1894
|
+
"omitted": "links and provider-specific payload fields",
|
|
1895
|
+
},
|
|
1896
|
+
"neon__list_branches": {
|
|
1897
|
+
"collectionKeys": ["branches"],
|
|
1898
|
+
"collectionName": "branches",
|
|
1899
|
+
"itemFields": [
|
|
1900
|
+
{ "name": "id" },
|
|
1901
|
+
{ "name": "name" },
|
|
1902
|
+
{ "name": "parent_id" },
|
|
1903
|
+
{ "name": "default" },
|
|
1904
|
+
{ "name": "current_state" },
|
|
1905
|
+
{ "name": "created_at" },
|
|
1906
|
+
],
|
|
1907
|
+
"omitted": "branch size/usage metrics and provider-specific payload fields",
|
|
1908
|
+
},
|
|
1909
|
+
"neon__list_projects": {
|
|
1910
|
+
"collectionKeys": ["projects"],
|
|
1911
|
+
"collectionName": "projects",
|
|
1912
|
+
"itemFields": [
|
|
1913
|
+
{ "name": "id" },
|
|
1914
|
+
{ "name": "name" },
|
|
1915
|
+
{ "name": "region_id" },
|
|
1916
|
+
{ "name": "pg_version" },
|
|
1917
|
+
{ "name": "created_at" },
|
|
1918
|
+
{ "name": "updated_at" },
|
|
1919
|
+
],
|
|
1920
|
+
"omitted": "compute settings, quotas, and provider-specific payload fields",
|
|
1921
|
+
},
|
|
1922
|
+
"netlify__list_deploys": {
|
|
1923
|
+
"collectionKeys": ["deploys"],
|
|
1924
|
+
"collectionName": "deploys",
|
|
1925
|
+
"itemFields": [
|
|
1926
|
+
{ "name": "id" },
|
|
1927
|
+
{ "name": "state" },
|
|
1928
|
+
{ "name": "branch" },
|
|
1929
|
+
{ "name": "context" },
|
|
1930
|
+
{ "name": "deploy_url" },
|
|
1931
|
+
{ "name": "created_at" },
|
|
1932
|
+
{ "name": "published_at" },
|
|
1933
|
+
{ "name": "error_message", "maxLength": 300 },
|
|
1934
|
+
],
|
|
1935
|
+
"outputFields": [{ "name": "page" }, { "name": "per_page" }],
|
|
1936
|
+
"omitted": "file digests, commit metadata, and provider-specific payload fields",
|
|
1937
|
+
},
|
|
1938
|
+
"netlify__list_form_submissions": {
|
|
1939
|
+
"collectionKeys": ["submissions"],
|
|
1940
|
+
"collectionName": "submissions",
|
|
1941
|
+
"itemFields": [
|
|
1942
|
+
{ "name": "id" },
|
|
1943
|
+
{ "name": "form_name" },
|
|
1944
|
+
{ "name": "name" },
|
|
1945
|
+
{ "name": "email" },
|
|
1946
|
+
{ "name": "summary", "maxLength": 300 },
|
|
1947
|
+
{ "name": "created_at" },
|
|
1948
|
+
],
|
|
1949
|
+
"outputFields": [{ "name": "page" }, { "name": "per_page" }],
|
|
1950
|
+
"omitted": "full submission body fields and provider-specific payload fields",
|
|
1951
|
+
},
|
|
1952
|
+
"netlify__list_sites": {
|
|
1953
|
+
"collectionKeys": ["sites"],
|
|
1954
|
+
"collectionName": "sites",
|
|
888
1955
|
"itemFields": [
|
|
889
1956
|
{ "name": "id" },
|
|
890
|
-
{ "name": "
|
|
891
|
-
{ "name": "title" },
|
|
892
|
-
{ "name": "state", "kind": "object" },
|
|
893
|
-
{ "name": "assignee", "kind": "contact" },
|
|
1957
|
+
{ "name": "name" },
|
|
894
1958
|
{ "name": "url" },
|
|
895
|
-
{ "name": "
|
|
896
|
-
{ "name": "
|
|
1959
|
+
{ "name": "ssl_url" },
|
|
1960
|
+
{ "name": "state" },
|
|
1961
|
+
{ "name": "created_at" },
|
|
1962
|
+
{ "name": "updated_at" },
|
|
1963
|
+
{ "name": "published_deploy", "kind": "object" },
|
|
897
1964
|
],
|
|
898
|
-
"outputFields": [{ "name": "
|
|
899
|
-
"omitted": "
|
|
1965
|
+
"outputFields": [{ "name": "page" }, { "name": "per_page" }],
|
|
1966
|
+
"omitted": "build settings, repo configuration, and provider-specific payload fields",
|
|
1967
|
+
},
|
|
1968
|
+
"new-relic__search_entities": {
|
|
1969
|
+
"collectionKeys": ["entities"],
|
|
1970
|
+
"collectionName": "entities",
|
|
1971
|
+
"itemFields": [{ "name": "guid" }, { "name": "name" }, { "name": "entityType" }, {
|
|
1972
|
+
"name": "domain",
|
|
1973
|
+
}],
|
|
1974
|
+
"outputFields": [{ "name": "nextCursor" }],
|
|
1975
|
+
"omitted": "entity tags and reporting metadata",
|
|
1976
|
+
},
|
|
1977
|
+
"openai__list_models": {
|
|
1978
|
+
"collectionKeys": ["data", "models"],
|
|
1979
|
+
"collectionName": "models",
|
|
1980
|
+
"itemFields": [{ "name": "id" }, { "name": "owned_by" }, { "name": "created" }],
|
|
1981
|
+
"omitted": "model capability details and provider-specific payload fields",
|
|
1982
|
+
},
|
|
1983
|
+
"openrouter__list_models": {
|
|
1984
|
+
"collectionKeys": ["data", "models"],
|
|
1985
|
+
"collectionName": "models",
|
|
1986
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "context_length" }],
|
|
1987
|
+
"omitted": "pricing, architecture, and provider-specific payload fields",
|
|
900
1988
|
},
|
|
901
1989
|
"outlook__find_free_time": {
|
|
902
1990
|
"collectionKeys": ["value", "schedules", "data"],
|
|
@@ -1242,6 +2330,361 @@ export const historicalToolSummaries = {
|
|
|
1242
2330
|
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
1243
2331
|
"omitted": "large email bodies and provider-specific message fields",
|
|
1244
2332
|
},
|
|
2333
|
+
"pagerduty__list_incidents": {
|
|
2334
|
+
"collectionKeys": ["incidents"],
|
|
2335
|
+
"collectionName": "incidents",
|
|
2336
|
+
"itemFields": [
|
|
2337
|
+
{ "name": "id" },
|
|
2338
|
+
{ "name": "incident_number" },
|
|
2339
|
+
{ "name": "title" },
|
|
2340
|
+
{ "name": "status" },
|
|
2341
|
+
{ "name": "urgency" },
|
|
2342
|
+
{ "name": "html_url" },
|
|
2343
|
+
{ "name": "created_at" },
|
|
2344
|
+
{ "name": "service", "kind": "object" },
|
|
2345
|
+
],
|
|
2346
|
+
"outputFields": [{ "name": "offset" }, { "name": "limit" }, { "name": "more" }, {
|
|
2347
|
+
"name": "total",
|
|
2348
|
+
}],
|
|
2349
|
+
"omitted": "incident bodies, alert details, and provider-specific payload fields",
|
|
2350
|
+
},
|
|
2351
|
+
"pagerduty__list_services": {
|
|
2352
|
+
"collectionKeys": ["services"],
|
|
2353
|
+
"collectionName": "services",
|
|
2354
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "status" }, {
|
|
2355
|
+
"name": "html_url",
|
|
2356
|
+
}, { "name": "created_at" }],
|
|
2357
|
+
"outputFields": [{ "name": "offset" }, { "name": "limit" }, { "name": "more" }, {
|
|
2358
|
+
"name": "total",
|
|
2359
|
+
}],
|
|
2360
|
+
"omitted": "integration configs, escalation policy details, and provider-specific payload fields",
|
|
2361
|
+
},
|
|
2362
|
+
"paypal__list_invoices": {
|
|
2363
|
+
"collectionKeys": ["items", "invoices"],
|
|
2364
|
+
"collectionName": "invoices",
|
|
2365
|
+
"itemFields": [{ "name": "id" }, { "name": "status" }, { "name": "detail", "kind": "object" }],
|
|
2366
|
+
"outputFields": [{ "name": "total_items" }, { "name": "total_pages" }],
|
|
2367
|
+
"omitted": "line items and amount breakdowns",
|
|
2368
|
+
},
|
|
2369
|
+
"paypal__list_transactions": {
|
|
2370
|
+
"collectionKeys": ["transaction_details", "transactions"],
|
|
2371
|
+
"collectionName": "transactions",
|
|
2372
|
+
"itemFields": [{ "name": "transaction_info", "kind": "object" }],
|
|
2373
|
+
"outputFields": [{ "name": "total_items" }, { "name": "total_pages" }, { "name": "page" }],
|
|
2374
|
+
"omitted": "payer, cart, and shipping detail blocks",
|
|
2375
|
+
},
|
|
2376
|
+
"perplexity__search_web": {
|
|
2377
|
+
"collectionKeys": ["results"],
|
|
2378
|
+
"collectionName": "results",
|
|
2379
|
+
"itemFields": [
|
|
2380
|
+
{ "name": "title" },
|
|
2381
|
+
{ "name": "url" },
|
|
2382
|
+
{ "name": "snippet", "maxLength": 300 },
|
|
2383
|
+
{ "name": "date" },
|
|
2384
|
+
],
|
|
2385
|
+
"omitted": "full result snippets and provider-specific payload fields",
|
|
2386
|
+
},
|
|
2387
|
+
"pinecone__list_indexes": {
|
|
2388
|
+
"collectionKeys": ["indexes"],
|
|
2389
|
+
"collectionName": "indexes",
|
|
2390
|
+
"itemFields": [{ "name": "name" }, { "name": "dimension" }, { "name": "metric" }, {
|
|
2391
|
+
"name": "host",
|
|
2392
|
+
}, { "name": "status", "kind": "object" }],
|
|
2393
|
+
"omitted": "index spec details and provider-specific payload fields",
|
|
2394
|
+
},
|
|
2395
|
+
"pipedrive__list_deals": {
|
|
2396
|
+
"collectionKeys": ["data", "deals"],
|
|
2397
|
+
"collectionName": "deals",
|
|
2398
|
+
"itemFields": [
|
|
2399
|
+
{ "name": "id" },
|
|
2400
|
+
{ "name": "title" },
|
|
2401
|
+
{ "name": "status" },
|
|
2402
|
+
{ "name": "value" },
|
|
2403
|
+
{ "name": "currency" },
|
|
2404
|
+
{ "name": "stage_id" },
|
|
2405
|
+
{ "name": "person_name" },
|
|
2406
|
+
{ "name": "org_name" },
|
|
2407
|
+
{ "name": "add_time" },
|
|
2408
|
+
{ "name": "update_time" },
|
|
2409
|
+
],
|
|
2410
|
+
"outputFields": [{ "name": "additional_data", "kind": "object" }],
|
|
2411
|
+
"omitted": "deal custom fields, activities, and provider-specific payload fields",
|
|
2412
|
+
},
|
|
2413
|
+
"planetscale__list_branches": {
|
|
2414
|
+
"collectionKeys": ["data"],
|
|
2415
|
+
"collectionName": "branches",
|
|
2416
|
+
"itemFields": [
|
|
2417
|
+
{ "name": "id" },
|
|
2418
|
+
{ "name": "name" },
|
|
2419
|
+
{ "name": "production" },
|
|
2420
|
+
{ "name": "ready" },
|
|
2421
|
+
{ "name": "parent_branch" },
|
|
2422
|
+
{ "name": "created_at" },
|
|
2423
|
+
{ "name": "updated_at" },
|
|
2424
|
+
],
|
|
2425
|
+
"outputFields": [{ "name": "current_page" }, { "name": "next_page" }],
|
|
2426
|
+
"omitted": "restore metadata and provider-specific payload fields",
|
|
2427
|
+
},
|
|
2428
|
+
"planetscale__list_databases": {
|
|
2429
|
+
"collectionKeys": ["data"],
|
|
2430
|
+
"collectionName": "databases",
|
|
2431
|
+
"itemFields": [
|
|
2432
|
+
{ "name": "id" },
|
|
2433
|
+
{ "name": "name" },
|
|
2434
|
+
{ "name": "state" },
|
|
2435
|
+
{ "name": "html_url" },
|
|
2436
|
+
{ "name": "created_at" },
|
|
2437
|
+
{ "name": "updated_at" },
|
|
2438
|
+
],
|
|
2439
|
+
"outputFields": [{ "name": "current_page" }, { "name": "next_page" }],
|
|
2440
|
+
"omitted": "region details, settings, and provider-specific payload fields",
|
|
2441
|
+
},
|
|
2442
|
+
"planetscale__list_deploy_requests": {
|
|
2443
|
+
"collectionKeys": ["data"],
|
|
2444
|
+
"collectionName": "deploy_requests",
|
|
2445
|
+
"itemFields": [
|
|
2446
|
+
{ "name": "id" },
|
|
2447
|
+
{ "name": "number" },
|
|
2448
|
+
{ "name": "state" },
|
|
2449
|
+
{ "name": "branch" },
|
|
2450
|
+
{ "name": "into_branch" },
|
|
2451
|
+
{ "name": "approved" },
|
|
2452
|
+
{ "name": "created_at" },
|
|
2453
|
+
{ "name": "updated_at" },
|
|
2454
|
+
],
|
|
2455
|
+
"outputFields": [{ "name": "current_page" }, { "name": "next_page" }],
|
|
2456
|
+
"omitted": "deployment operation details and provider-specific payload fields",
|
|
2457
|
+
},
|
|
2458
|
+
"planetscale__list_organizations": {
|
|
2459
|
+
"collectionKeys": ["data"],
|
|
2460
|
+
"collectionName": "organizations",
|
|
2461
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "created_at" }, {
|
|
2462
|
+
"name": "updated_at",
|
|
2463
|
+
}],
|
|
2464
|
+
"outputFields": [{ "name": "current_page" }, { "name": "next_page" }],
|
|
2465
|
+
"omitted": "billing, plan, and provider-specific payload fields",
|
|
2466
|
+
},
|
|
2467
|
+
"posthog__list_feature_flags": {
|
|
2468
|
+
"collectionKeys": ["results"],
|
|
2469
|
+
"collectionName": "feature_flags",
|
|
2470
|
+
"itemFields": [{ "name": "id" }, { "name": "key" }, { "name": "name" }, { "name": "active" }, {
|
|
2471
|
+
"name": "created_at",
|
|
2472
|
+
}],
|
|
2473
|
+
"outputFields": [{ "name": "count" }, { "name": "next" }],
|
|
2474
|
+
"omitted": "rollout filters, variants, and provider-specific payload fields",
|
|
2475
|
+
},
|
|
2476
|
+
"posthog__list_persons": {
|
|
2477
|
+
"collectionKeys": ["results"],
|
|
2478
|
+
"collectionName": "persons",
|
|
2479
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, {
|
|
2480
|
+
"name": "distinct_ids",
|
|
2481
|
+
"kind": "string-array",
|
|
2482
|
+
}, { "name": "created_at" }],
|
|
2483
|
+
"outputFields": [{ "name": "count" }, { "name": "next" }],
|
|
2484
|
+
"omitted": "person properties and provider-specific payload fields",
|
|
2485
|
+
},
|
|
2486
|
+
"productboard__list_entities": {
|
|
2487
|
+
"collectionKeys": ["data"],
|
|
2488
|
+
"collectionName": "entities",
|
|
2489
|
+
"itemFields": [
|
|
2490
|
+
{ "name": "id" },
|
|
2491
|
+
{ "name": "type" },
|
|
2492
|
+
{ "name": "fields", "kind": "object" },
|
|
2493
|
+
{ "name": "createdAt" },
|
|
2494
|
+
{ "name": "updatedAt" },
|
|
2495
|
+
{ "name": "links", "kind": "object" },
|
|
2496
|
+
],
|
|
2497
|
+
"outputFields": [{ "name": "links", "kind": "object" }],
|
|
2498
|
+
"omitted": "entity relationships, custom fields, and provider-specific payload fields",
|
|
2499
|
+
},
|
|
2500
|
+
"productboard__list_notes": {
|
|
2501
|
+
"collectionKeys": ["data"],
|
|
2502
|
+
"collectionName": "notes",
|
|
2503
|
+
"itemFields": [{ "name": "id" }, { "name": "type" }, { "name": "fields", "kind": "object" }, {
|
|
2504
|
+
"name": "links",
|
|
2505
|
+
"kind": "object",
|
|
2506
|
+
}],
|
|
2507
|
+
"outputFields": [{ "name": "links", "kind": "object" }],
|
|
2508
|
+
"omitted": "note content bodies, relationships, and provider-specific payload fields",
|
|
2509
|
+
},
|
|
2510
|
+
"qdrant__list_collections": {
|
|
2511
|
+
"collectionKeys": ["collections"],
|
|
2512
|
+
"collectionName": "collections",
|
|
2513
|
+
"itemFields": [{ "name": "name" }],
|
|
2514
|
+
"omitted": "provider-specific payload fields",
|
|
2515
|
+
},
|
|
2516
|
+
"quickbooks__list_invoices": {
|
|
2517
|
+
"collectionKeys": ["Invoice", "QueryResponse"],
|
|
2518
|
+
"collectionName": "invoices",
|
|
2519
|
+
"itemFields": [
|
|
2520
|
+
{ "name": "Id" },
|
|
2521
|
+
{ "name": "DocNumber" },
|
|
2522
|
+
{ "name": "TxnDate" },
|
|
2523
|
+
{ "name": "DueDate" },
|
|
2524
|
+
{ "name": "TotalAmt" },
|
|
2525
|
+
{ "name": "Balance" },
|
|
2526
|
+
{ "name": "EmailStatus" },
|
|
2527
|
+
{ "name": "CustomerRef", "kind": "object" },
|
|
2528
|
+
],
|
|
2529
|
+
"outputFields": [{ "name": "startPosition" }, { "name": "maxResults" }, {
|
|
2530
|
+
"name": "totalCount",
|
|
2531
|
+
}],
|
|
2532
|
+
"omitted": "invoice line items, tax details, and provider-specific payload fields",
|
|
2533
|
+
},
|
|
2534
|
+
"railway__list_deployments": {
|
|
2535
|
+
"collectionKeys": ["edges", "deployments", "nodes", "data"],
|
|
2536
|
+
"collectionName": "deployments",
|
|
2537
|
+
"itemFields": [{ "name": "node", "kind": "object" }],
|
|
2538
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
2539
|
+
"omitted": "deployment metadata and provider-specific payload fields",
|
|
2540
|
+
},
|
|
2541
|
+
"railway__list_projects": {
|
|
2542
|
+
"collectionKeys": ["edges", "projects", "nodes", "data"],
|
|
2543
|
+
"collectionName": "projects",
|
|
2544
|
+
"itemFields": [{ "name": "node", "kind": "object" }],
|
|
2545
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
2546
|
+
"omitted": "project settings and provider-specific payload fields",
|
|
2547
|
+
},
|
|
2548
|
+
"razorpay__list_payments": {
|
|
2549
|
+
"collectionKeys": ["items", "payments"],
|
|
2550
|
+
"collectionName": "payments",
|
|
2551
|
+
"itemFields": [
|
|
2552
|
+
{ "name": "id" },
|
|
2553
|
+
{ "name": "amount" },
|
|
2554
|
+
{ "name": "currency" },
|
|
2555
|
+
{ "name": "status" },
|
|
2556
|
+
{ "name": "method" },
|
|
2557
|
+
{ "name": "order_id" },
|
|
2558
|
+
{ "name": "email" },
|
|
2559
|
+
{ "name": "contact" },
|
|
2560
|
+
{ "name": "created_at" },
|
|
2561
|
+
],
|
|
2562
|
+
"outputFields": [{ "name": "count" }],
|
|
2563
|
+
"omitted": "card/UPI instrument details and acquirer data",
|
|
2564
|
+
},
|
|
2565
|
+
"redis-cloud__list_subscriptions": {
|
|
2566
|
+
"collectionKeys": ["subscriptions"],
|
|
2567
|
+
"collectionName": "subscriptions",
|
|
2568
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "status" }, {
|
|
2569
|
+
"name": "numberOfDatabases",
|
|
2570
|
+
}, { "name": "paymentMethodType" }],
|
|
2571
|
+
"omitted": "cloud provider deployment details and pricing fields",
|
|
2572
|
+
},
|
|
2573
|
+
"render__list_deploys": {
|
|
2574
|
+
"collectionKeys": ["deploys"],
|
|
2575
|
+
"collectionName": "deploys",
|
|
2576
|
+
"itemFields": [{ "name": "deploy", "kind": "object" }, { "name": "cursor" }],
|
|
2577
|
+
"outputFields": [{ "name": "cursor" }],
|
|
2578
|
+
"omitted": "commit details and provider-specific payload fields",
|
|
2579
|
+
},
|
|
2580
|
+
"render__list_services": {
|
|
2581
|
+
"collectionKeys": ["services"],
|
|
2582
|
+
"collectionName": "services",
|
|
2583
|
+
"itemFields": [{ "name": "service", "kind": "object" }, { "name": "cursor" }],
|
|
2584
|
+
"outputFields": [{ "name": "cursor" }],
|
|
2585
|
+
"omitted": "service details and provider-specific payload fields",
|
|
2586
|
+
},
|
|
2587
|
+
"replicate__list_models": {
|
|
2588
|
+
"collectionKeys": ["results", "models"],
|
|
2589
|
+
"collectionName": "models",
|
|
2590
|
+
"itemFields": [{ "name": "owner" }, { "name": "name" }, {
|
|
2591
|
+
"name": "description",
|
|
2592
|
+
"maxLength": 120,
|
|
2593
|
+
}, { "name": "run_count" }],
|
|
2594
|
+
"outputFields": [{ "name": "next" }],
|
|
2595
|
+
"omitted": "version details, cover images, and provider-specific payload fields",
|
|
2596
|
+
},
|
|
2597
|
+
"resend__list_domains": {
|
|
2598
|
+
"collectionKeys": ["data", "domains"],
|
|
2599
|
+
"collectionName": "domains",
|
|
2600
|
+
"itemFields": [
|
|
2601
|
+
{ "name": "id" },
|
|
2602
|
+
{ "name": "name" },
|
|
2603
|
+
{ "name": "status" },
|
|
2604
|
+
{ "name": "region" },
|
|
2605
|
+
{ "name": "created_at" },
|
|
2606
|
+
],
|
|
2607
|
+
"outputFields": [{ "name": "next" }],
|
|
2608
|
+
"omitted": "DNS records and tracking settings",
|
|
2609
|
+
},
|
|
2610
|
+
"salesflare__list_contacts": {
|
|
2611
|
+
"collectionKeys": ["items", "data"],
|
|
2612
|
+
"collectionName": "contacts",
|
|
2613
|
+
"itemFields": [
|
|
2614
|
+
{ "name": "id" },
|
|
2615
|
+
{ "name": "name" },
|
|
2616
|
+
{ "name": "firstname" },
|
|
2617
|
+
{ "name": "lastname" },
|
|
2618
|
+
{ "name": "email" },
|
|
2619
|
+
{ "name": "phone_number" },
|
|
2620
|
+
{ "name": "organisation" },
|
|
2621
|
+
],
|
|
2622
|
+
"omitted": "social profiles, addresses, and provider-specific payload fields",
|
|
2623
|
+
},
|
|
2624
|
+
"segment__list_destinations": {
|
|
2625
|
+
"collectionKeys": ["data.destinations", "destinations"],
|
|
2626
|
+
"collectionName": "destinations",
|
|
2627
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "enabled" }, {
|
|
2628
|
+
"name": "sourceId",
|
|
2629
|
+
}, { "name": "metadata", "kind": "object" }],
|
|
2630
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
2631
|
+
"omitted": "destination settings and provider-specific payload fields",
|
|
2632
|
+
},
|
|
2633
|
+
"segment__list_sources": {
|
|
2634
|
+
"collectionKeys": ["data.sources", "sources"],
|
|
2635
|
+
"collectionName": "sources",
|
|
2636
|
+
"itemFields": [
|
|
2637
|
+
{ "name": "id" },
|
|
2638
|
+
{ "name": "slug" },
|
|
2639
|
+
{ "name": "name" },
|
|
2640
|
+
{ "name": "enabled" },
|
|
2641
|
+
{ "name": "workspaceId" },
|
|
2642
|
+
{ "name": "metadata", "kind": "object" },
|
|
2643
|
+
],
|
|
2644
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
2645
|
+
"omitted": "source settings, write keys, and provider-specific payload fields",
|
|
2646
|
+
},
|
|
2647
|
+
"sendgrid__list_contacts": {
|
|
2648
|
+
"collectionKeys": ["result", "contacts"],
|
|
2649
|
+
"collectionName": "contacts",
|
|
2650
|
+
"itemFields": [{ "name": "id" }, { "name": "email" }, { "name": "first_name" }, {
|
|
2651
|
+
"name": "last_name",
|
|
2652
|
+
}, { "name": "updated_at" }],
|
|
2653
|
+
"outputFields": [{ "name": "contact_count" }, { "name": "_metadata", "kind": "object" }],
|
|
2654
|
+
"omitted": "address, custom fields, and list membership details",
|
|
2655
|
+
},
|
|
2656
|
+
"shortcut__list_epics": {
|
|
2657
|
+
"collectionKeys": ["epics"],
|
|
2658
|
+
"collectionName": "epics",
|
|
2659
|
+
"itemFields": [
|
|
2660
|
+
{ "name": "id" },
|
|
2661
|
+
{ "name": "name" },
|
|
2662
|
+
{ "name": "state" },
|
|
2663
|
+
{ "name": "app_url" },
|
|
2664
|
+
{ "name": "created_at" },
|
|
2665
|
+
{ "name": "updated_at" },
|
|
2666
|
+
{ "name": "owner_ids", "kind": "string-array" },
|
|
2667
|
+
],
|
|
2668
|
+
"outputFields": [],
|
|
2669
|
+
"omitted": "epic stats, milestone links, and provider-specific payload fields",
|
|
2670
|
+
},
|
|
2671
|
+
"shortcut__search_stories": {
|
|
2672
|
+
"collectionKeys": ["data"],
|
|
2673
|
+
"collectionName": "stories",
|
|
2674
|
+
"itemFields": [
|
|
2675
|
+
{ "name": "id" },
|
|
2676
|
+
{ "name": "name" },
|
|
2677
|
+
{ "name": "story_type" },
|
|
2678
|
+
{ "name": "workflow_state_id" },
|
|
2679
|
+
{ "name": "epic_id" },
|
|
2680
|
+
{ "name": "app_url" },
|
|
2681
|
+
{ "name": "created_at" },
|
|
2682
|
+
{ "name": "updated_at" },
|
|
2683
|
+
{ "name": "owner_ids", "kind": "string-array" },
|
|
2684
|
+
],
|
|
2685
|
+
"outputFields": [{ "name": "next" }, { "name": "total" }],
|
|
2686
|
+
"omitted": "story descriptions, tasks, comments, and provider-specific payload fields",
|
|
2687
|
+
},
|
|
1245
2688
|
"slack__list_channels": {
|
|
1246
2689
|
"collectionKeys": ["channels", "data"],
|
|
1247
2690
|
"collectionName": "channels",
|
|
@@ -1272,4 +2715,287 @@ export const historicalToolSummaries = {
|
|
|
1272
2715
|
"outputFields": [{ "name": "response_metadata", "kind": "object" }],
|
|
1273
2716
|
"omitted": "user profiles, avatars, and provider-specific payload fields",
|
|
1274
2717
|
},
|
|
2718
|
+
"snyk__list_projects": {
|
|
2719
|
+
"collectionKeys": ["data"],
|
|
2720
|
+
"collectionName": "projects",
|
|
2721
|
+
"itemFields": [{ "name": "id" }, { "name": "type" }, {
|
|
2722
|
+
"name": "attributes",
|
|
2723
|
+
"kind": "object",
|
|
2724
|
+
}],
|
|
2725
|
+
"outputFields": [{ "name": "links", "kind": "object" }],
|
|
2726
|
+
"omitted": "JSON:API relationship objects and project metadata",
|
|
2727
|
+
},
|
|
2728
|
+
"square__list_payments": {
|
|
2729
|
+
"collectionKeys": ["payments"],
|
|
2730
|
+
"collectionName": "payments",
|
|
2731
|
+
"itemFields": [
|
|
2732
|
+
{ "name": "id" },
|
|
2733
|
+
{ "name": "status" },
|
|
2734
|
+
{ "name": "amount_money", "kind": "object" },
|
|
2735
|
+
{ "name": "source_type" },
|
|
2736
|
+
{ "name": "order_id" },
|
|
2737
|
+
{ "name": "customer_id" },
|
|
2738
|
+
{ "name": "created_at" },
|
|
2739
|
+
{ "name": "updated_at" },
|
|
2740
|
+
],
|
|
2741
|
+
"outputFields": [{ "name": "cursor" }],
|
|
2742
|
+
"omitted": "card details, processing fees, and risk evaluation blocks",
|
|
2743
|
+
},
|
|
2744
|
+
"stability-ai__list_engines": {
|
|
2745
|
+
"collectionKeys": ["engines"],
|
|
2746
|
+
"collectionName": "engines",
|
|
2747
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "type" }, {
|
|
2748
|
+
"name": "description",
|
|
2749
|
+
"maxLength": 200,
|
|
2750
|
+
}],
|
|
2751
|
+
"omitted": "provider-specific payload fields",
|
|
2752
|
+
},
|
|
2753
|
+
"stripe__list_charges": {
|
|
2754
|
+
"collectionKeys": ["data"],
|
|
2755
|
+
"collectionName": "charges",
|
|
2756
|
+
"itemFields": [
|
|
2757
|
+
{ "name": "id" },
|
|
2758
|
+
{ "name": "amount" },
|
|
2759
|
+
{ "name": "currency" },
|
|
2760
|
+
{ "name": "status" },
|
|
2761
|
+
{ "name": "paid" },
|
|
2762
|
+
{ "name": "refunded" },
|
|
2763
|
+
{ "name": "customer" },
|
|
2764
|
+
{ "name": "created" },
|
|
2765
|
+
],
|
|
2766
|
+
"outputFields": [{ "name": "has_more" }],
|
|
2767
|
+
"omitted": "payment method details, outcome data, and provider-specific payload fields",
|
|
2768
|
+
},
|
|
2769
|
+
"stripe__list_customers": {
|
|
2770
|
+
"collectionKeys": ["data"],
|
|
2771
|
+
"collectionName": "customers",
|
|
2772
|
+
"itemFields": [
|
|
2773
|
+
{ "name": "id" },
|
|
2774
|
+
{ "name": "email" },
|
|
2775
|
+
{ "name": "name" },
|
|
2776
|
+
{ "name": "created" },
|
|
2777
|
+
{ "name": "currency" },
|
|
2778
|
+
{ "name": "delinquent" },
|
|
2779
|
+
],
|
|
2780
|
+
"outputFields": [{ "name": "has_more" }],
|
|
2781
|
+
"omitted": "customer addresses, invoice settings, and provider-specific payload fields",
|
|
2782
|
+
},
|
|
2783
|
+
"stripe__list_invoices": {
|
|
2784
|
+
"collectionKeys": ["data"],
|
|
2785
|
+
"collectionName": "invoices",
|
|
2786
|
+
"itemFields": [
|
|
2787
|
+
{ "name": "id" },
|
|
2788
|
+
{ "name": "customer" },
|
|
2789
|
+
{ "name": "status" },
|
|
2790
|
+
{ "name": "amount_due" },
|
|
2791
|
+
{ "name": "amount_paid" },
|
|
2792
|
+
{ "name": "currency" },
|
|
2793
|
+
{ "name": "created" },
|
|
2794
|
+
],
|
|
2795
|
+
"outputFields": [{ "name": "has_more" }],
|
|
2796
|
+
"omitted": "invoice line items, tax details, and provider-specific payload fields",
|
|
2797
|
+
},
|
|
2798
|
+
"stripe__list_payments": {
|
|
2799
|
+
"collectionKeys": ["data"],
|
|
2800
|
+
"collectionName": "payment_intents",
|
|
2801
|
+
"itemFields": [
|
|
2802
|
+
{ "name": "id" },
|
|
2803
|
+
{ "name": "amount" },
|
|
2804
|
+
{ "name": "currency" },
|
|
2805
|
+
{ "name": "status" },
|
|
2806
|
+
{ "name": "customer" },
|
|
2807
|
+
{ "name": "created" },
|
|
2808
|
+
{ "name": "description" },
|
|
2809
|
+
],
|
|
2810
|
+
"outputFields": [{ "name": "has_more" }],
|
|
2811
|
+
"omitted": "payment method details, charge breakdowns, and provider-specific payload fields",
|
|
2812
|
+
},
|
|
2813
|
+
"stripe__list_subscriptions": {
|
|
2814
|
+
"collectionKeys": ["data"],
|
|
2815
|
+
"collectionName": "subscriptions",
|
|
2816
|
+
"itemFields": [
|
|
2817
|
+
{ "name": "id" },
|
|
2818
|
+
{ "name": "customer" },
|
|
2819
|
+
{ "name": "status" },
|
|
2820
|
+
{ "name": "current_period_end" },
|
|
2821
|
+
{ "name": "cancel_at_period_end" },
|
|
2822
|
+
{ "name": "created" },
|
|
2823
|
+
],
|
|
2824
|
+
"outputFields": [{ "name": "has_more" }],
|
|
2825
|
+
"omitted": "subscription items, pricing tiers, and provider-specific payload fields",
|
|
2826
|
+
},
|
|
2827
|
+
"tavily__search": {
|
|
2828
|
+
"collectionKeys": ["results"],
|
|
2829
|
+
"collectionName": "results",
|
|
2830
|
+
"itemFields": [
|
|
2831
|
+
{ "name": "title" },
|
|
2832
|
+
{ "name": "url" },
|
|
2833
|
+
{ "name": "content", "maxLength": 300 },
|
|
2834
|
+
{ "name": "score" },
|
|
2835
|
+
{ "name": "published_date" },
|
|
2836
|
+
],
|
|
2837
|
+
"omitted": "raw page content and provider-specific payload fields",
|
|
2838
|
+
},
|
|
2839
|
+
"todoist__list_projects": {
|
|
2840
|
+
"collectionKeys": ["results", "projects"],
|
|
2841
|
+
"collectionName": "projects",
|
|
2842
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "color" }, {
|
|
2843
|
+
"name": "is_favorite",
|
|
2844
|
+
}, { "name": "parent_id" }],
|
|
2845
|
+
"outputFields": [{ "name": "next_cursor" }],
|
|
2846
|
+
"omitted": "project view settings and provider-specific payload fields",
|
|
2847
|
+
},
|
|
2848
|
+
"todoist__list_tasks": {
|
|
2849
|
+
"collectionKeys": ["results", "tasks"],
|
|
2850
|
+
"collectionName": "tasks",
|
|
2851
|
+
"itemFields": [
|
|
2852
|
+
{ "name": "id" },
|
|
2853
|
+
{ "name": "content" },
|
|
2854
|
+
{ "name": "project_id" },
|
|
2855
|
+
{ "name": "priority" },
|
|
2856
|
+
{ "name": "due", "kind": "object" },
|
|
2857
|
+
{ "name": "checked" },
|
|
2858
|
+
{ "name": "added_at" },
|
|
2859
|
+
],
|
|
2860
|
+
"outputFields": [{ "name": "next_cursor" }],
|
|
2861
|
+
"omitted": "task descriptions and provider-specific payload fields",
|
|
2862
|
+
},
|
|
2863
|
+
"together-ai__list_models": {
|
|
2864
|
+
"collectionKeys": ["data", "models"],
|
|
2865
|
+
"collectionName": "models",
|
|
2866
|
+
"itemFields": [{ "name": "id" }, { "name": "type" }, { "name": "context_length" }, {
|
|
2867
|
+
"name": "organization",
|
|
2868
|
+
}],
|
|
2869
|
+
"omitted": "pricing details and provider-specific payload fields",
|
|
2870
|
+
},
|
|
2871
|
+
"twilio__list_messages": {
|
|
2872
|
+
"collectionKeys": ["messages"],
|
|
2873
|
+
"collectionName": "messages",
|
|
2874
|
+
"itemFields": [
|
|
2875
|
+
{ "name": "sid" },
|
|
2876
|
+
{ "name": "to" },
|
|
2877
|
+
{ "name": "from" },
|
|
2878
|
+
{ "name": "status" },
|
|
2879
|
+
{ "name": "direction" },
|
|
2880
|
+
{ "name": "date_sent" },
|
|
2881
|
+
{ "name": "body", "maxLength": 160 },
|
|
2882
|
+
],
|
|
2883
|
+
"outputFields": [{ "name": "next_page_uri" }],
|
|
2884
|
+
"omitted": "delivery error details, pricing, and provider-specific payload fields",
|
|
2885
|
+
},
|
|
2886
|
+
"typeform__list_forms": {
|
|
2887
|
+
"collectionKeys": ["items", "forms"],
|
|
2888
|
+
"collectionName": "forms",
|
|
2889
|
+
"itemFields": [{ "name": "id" }, { "name": "title" }, { "name": "type" }, {
|
|
2890
|
+
"name": "last_updated_at",
|
|
2891
|
+
}, { "name": "_links", "kind": "object" }],
|
|
2892
|
+
"outputFields": [{ "name": "total_items" }, { "name": "page_count" }],
|
|
2893
|
+
"omitted": "form settings and theme details",
|
|
2894
|
+
},
|
|
2895
|
+
"typeform__list_responses": {
|
|
2896
|
+
"collectionKeys": ["items", "responses"],
|
|
2897
|
+
"collectionName": "responses",
|
|
2898
|
+
"itemFields": [{ "name": "response_id" }, { "name": "token" }, { "name": "submitted_at" }, {
|
|
2899
|
+
"name": "landed_at",
|
|
2900
|
+
}, { "name": "answers", "kind": "object" }],
|
|
2901
|
+
"outputFields": [{ "name": "total_items" }, { "name": "page_count" }],
|
|
2902
|
+
"omitted": "hidden fields, calculated scores, and metadata blocks",
|
|
2903
|
+
},
|
|
2904
|
+
"vercel__list_deployments": {
|
|
2905
|
+
"collectionKeys": ["deployments"],
|
|
2906
|
+
"collectionName": "deployments",
|
|
2907
|
+
"itemFields": [
|
|
2908
|
+
{ "name": "uid" },
|
|
2909
|
+
{ "name": "name" },
|
|
2910
|
+
{ "name": "url" },
|
|
2911
|
+
{ "name": "state" },
|
|
2912
|
+
{ "name": "target" },
|
|
2913
|
+
{ "name": "createdAt" },
|
|
2914
|
+
{ "name": "creator", "kind": "contact" },
|
|
2915
|
+
],
|
|
2916
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
2917
|
+
"omitted": "git metadata, checks, and provider-specific payload fields",
|
|
2918
|
+
},
|
|
2919
|
+
"vercel__list_projects": {
|
|
2920
|
+
"collectionKeys": ["projects"],
|
|
2921
|
+
"collectionName": "projects",
|
|
2922
|
+
"itemFields": [
|
|
2923
|
+
{ "name": "id" },
|
|
2924
|
+
{ "name": "name" },
|
|
2925
|
+
{ "name": "framework" },
|
|
2926
|
+
{ "name": "nodeVersion" },
|
|
2927
|
+
{ "name": "createdAt" },
|
|
2928
|
+
{ "name": "updatedAt" },
|
|
2929
|
+
],
|
|
2930
|
+
"outputFields": [{ "name": "pagination", "kind": "object" }],
|
|
2931
|
+
"omitted": "build settings, latest deployment payloads, and provider-specific fields",
|
|
2932
|
+
},
|
|
2933
|
+
"weaviate__get_schema": {
|
|
2934
|
+
"collectionKeys": ["classes"],
|
|
2935
|
+
"collectionName": "classes",
|
|
2936
|
+
"itemFields": [{ "name": "class" }, { "name": "description", "maxLength": 200 }, {
|
|
2937
|
+
"name": "vectorizer",
|
|
2938
|
+
}],
|
|
2939
|
+
"omitted": "property definitions, module configs, and provider-specific payload fields",
|
|
2940
|
+
},
|
|
2941
|
+
"webex__list_rooms": {
|
|
2942
|
+
"collectionKeys": ["items"],
|
|
2943
|
+
"collectionName": "rooms",
|
|
2944
|
+
"itemFields": [
|
|
2945
|
+
{ "name": "id" },
|
|
2946
|
+
{ "name": "title" },
|
|
2947
|
+
{ "name": "type" },
|
|
2948
|
+
{ "name": "isLocked" },
|
|
2949
|
+
{ "name": "lastActivity" },
|
|
2950
|
+
{ "name": "created" },
|
|
2951
|
+
],
|
|
2952
|
+
"outputFields": [],
|
|
2953
|
+
"omitted": "room metadata and provider-specific payload fields",
|
|
2954
|
+
},
|
|
2955
|
+
"xero__list_connections": {
|
|
2956
|
+
"collectionKeys": ["connections", "data"],
|
|
2957
|
+
"collectionName": "connections",
|
|
2958
|
+
"itemFields": [{ "name": "id" }, { "name": "tenantId" }, { "name": "tenantType" }, {
|
|
2959
|
+
"name": "tenantName",
|
|
2960
|
+
}, { "name": "createdDateUtc" }],
|
|
2961
|
+
"outputFields": [],
|
|
2962
|
+
"omitted": "auth event identifiers and provider-specific payload fields",
|
|
2963
|
+
},
|
|
2964
|
+
"xero__list_invoices": {
|
|
2965
|
+
"collectionKeys": ["Invoices", "data"],
|
|
2966
|
+
"collectionName": "invoices",
|
|
2967
|
+
"itemFields": [
|
|
2968
|
+
{ "name": "InvoiceID" },
|
|
2969
|
+
{ "name": "InvoiceNumber" },
|
|
2970
|
+
{ "name": "Type" },
|
|
2971
|
+
{ "name": "Status" },
|
|
2972
|
+
{ "name": "Date" },
|
|
2973
|
+
{ "name": "DueDate" },
|
|
2974
|
+
{ "name": "Total" },
|
|
2975
|
+
{ "name": "AmountDue" },
|
|
2976
|
+
{ "name": "UpdatedDateUTC" },
|
|
2977
|
+
{ "name": "Contact", "kind": "object" },
|
|
2978
|
+
],
|
|
2979
|
+
"outputFields": [],
|
|
2980
|
+
"omitted": "invoice line items, payments, and provider-specific payload fields",
|
|
2981
|
+
},
|
|
2982
|
+
"zoom__list_meetings": {
|
|
2983
|
+
"collectionKeys": ["meetings"],
|
|
2984
|
+
"collectionName": "meetings",
|
|
2985
|
+
"itemFields": [
|
|
2986
|
+
{ "name": "id" },
|
|
2987
|
+
{ "name": "uuid" },
|
|
2988
|
+
{ "name": "topic" },
|
|
2989
|
+
{ "name": "type" },
|
|
2990
|
+
{ "name": "start_time" },
|
|
2991
|
+
{ "name": "duration" },
|
|
2992
|
+
{ "name": "timezone" },
|
|
2993
|
+
{ "name": "join_url" },
|
|
2994
|
+
{ "name": "created_at" },
|
|
2995
|
+
],
|
|
2996
|
+
"outputFields": [{ "name": "next_page_token" }, { "name": "page_size" }, {
|
|
2997
|
+
"name": "total_records",
|
|
2998
|
+
}],
|
|
2999
|
+
"omitted": "meeting settings, passwords, and provider-specific payload fields",
|
|
3000
|
+
},
|
|
1275
3001
|
};
|