Skip to content

Commit cc47693

Browse files
committed
feat: MCP annotations batch 64/65 (100 components)
1 parent 61d0151 commit cc47693

File tree

100 files changed

+600
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+600
-100
lines changed

components/zerotier/actions/get-status/get-status.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import zerotier from "../../zerotier.app.mjs";
33
export default {
44
key: "zerotier-get-status",
55
type: "action",
6-
version: "0.0.3",
6+
version: "0.0.4",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: true,
11+
},
712
name: "Get Account Status",
813
description: "Get the overall account status. Returns the overall status of the account tied to the API token in use. [See docs here](https://docs.zerotier.com/central/v1/#operation/getStatus)",
914
props: {

components/zerotier/actions/get-user/get-user.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import zerotier from "../../zerotier.app.mjs";
33
export default {
44
key: "zerotier-get-user",
55
type: "action",
6-
version: "0.0.4",
6+
version: "0.0.5",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: true,
11+
},
712
name: "Get User",
813
description: "Get a specific user. Returns a single user. [See docs here](https://docs.zerotier.com/central/v1/#operation/getUserByID)",
914
props: {

components/zerotier/actions/update-network-member/update-network-member.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import zerotier from "../../zerotier.app.mjs";
33
export default {
44
key: "zerotier-update-network-member",
55
type: "action",
6-
version: "0.0.2",
6+
version: "0.0.3",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
name: "Update Network Member",
813
description:
914
"Update a specific member (node) within a network. Can authorize, rename, hide a member (as well as other updates). [See docs here](https://docs.zerotier.com/central/v1/#operation/updateNetworkMember)",

components/zest/actions/send-gift/send-gift.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "zest-send-gift",
55
name: "Send Gift",
66
description: "Creates a gift within a specified campaign in Zest. [See the documentation](https://gifts.zest.co/admin/integrations/documentation#operation/create)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
app,

components/zip_archive_api/actions/compress-files/compress-files.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
key: "zip_archive_api-compress-files",
88
name: "Compress Files",
99
description: "Compress files provided through URLs into a zip folder. [See the documentation](https://archiveapi.com/rest-api/file-compression/)",
10-
version: "1.0.1",
10+
version: "1.0.2",
11+
annotations: {
12+
destructiveHint: true,
13+
openWorldHint: true,
14+
readOnlyHint: false,
15+
},
1116
type: "action",
1217
props: {
1318
app,

components/zixflow/actions/create-activity/create-activity.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "zixflow-create-activity",
66
name: "Create Activity",
77
description: "Creates a new activity or task within Zixflow. [See the documentation](https://docs.zixflow.com/api-reference/activity-list/create)",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
type: "action",
1015
props: {
1116
app,

components/zixflow/actions/delete-activity/delete-activity.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "zixflow-delete-activity",
55
name: "Delete Activity",
66
description: "Deletes an existing activity or task from Zixflow. [See the documentation](https://docs.zixflow.com/api-reference/activity-list/delete)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
type: "action",
914
props: {
1015
app,

components/zixflow/actions/get-activities/get-activities.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "zixflow-get-activities",
55
name: "Get Activities",
66
description: "Retrieve a list of activities. [See the documentation](https://docs.zixflow.com/api-reference/activity-list/get#body)",
7-
version: "0.0.1",
7+
version: "0.0.2",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: true,
12+
},
813
type: "action",
914
props: {
1015
app,

components/zixflow/actions/update-activity/update-activity.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "zixflow-update-activity",
66
name: "Update Activity",
77
description: "Updates an existing activity or task in Zixflow. [See the documentation](https://docs.zixflow.com/api-reference/activity-list/edit)",
8-
version: "0.0.1",
8+
version: "0.0.2",
9+
annotations: {
10+
destructiveHint: true,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
type: "action",
1015
props: {
1116
app,

components/zoho_analytics/actions/add-row/add-row.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import zohoAnalytics from "../../zoho_analytics.app.mjs";
33
export default {
44
key: "zoho_analytics-add-row",
55
name: "Add Row",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: false,
11+
},
712
description: "Add a single row in the specified table. [See the documentation](https://www.zoho.com/analytics/api/v2/#add-row)",
813
type: "action",
914
props: {

0 commit comments

Comments
 (0)