Skip to content

Commit a5f3e0c

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

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/pipedream_utils/actions/retrieve-new-rss-stories/retrieve-new-rss-stories.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
key: "pipedream_utils-retrieve-new-rss-stories",
77
name: "Helper Functions - Retrieve New RSS Stories",
88
description: "Gets new stories from a specified RSS feed that have not already been processed.",
9-
version: "0.0.2",
9+
version: "0.0.3",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: true,
14+
},
1015
type: "action",
1116
props: {
1217
pipedream_utils,

components/pipedream_utils/actions/schedule-task-in-future/schedule-task-in-future.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
key: "pipedream_utils-schedule-task-in-future",
77
name: "Helper Functions - Pipedream Task Scheduler - Schedule Task",
88
description: "Schedule a task with an existing task scheduler source. See [here](https://pipedream.com/apps/pipedream/triggers/new-scheduled-tasks) for more details.",
9-
version: "0.0.2",
9+
version: "0.0.3",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
type: "action",
1116
props: {
1217
pipedream_utils,

components/pipedream_utils/actions/send-email-with-nodemailer/send-email-with-nodemailer.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
key: "pipedream_utils-send-email-with-nodemailer",
77
name: "Helper Functions - Send email with Nodemailer",
88
description: "Sends an email using the nodemailer package",
9-
version: "0.0.1",
9+
version: "0.0.2",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
type: "action",
1116
props: {
1217
pipedream_utils,

components/pipedream_utils/actions/send-to-s3/send-to-s3.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "pipedream_utils-send-to-s3",
66
name: "Helper Functions - Send to Amazon S3",
77
description: "Send data to Amazon S3 using Pipedream's destination integration. See https://docs.pipedream.com/destinations/s3/",
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
pipedream_utils,

components/pipedream_utils/actions/set-default-value/set-default-value.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ export default {
33
name: "Formatting - [Text] Set Default Value",
44
description: "Return a default value if the text is empty",
55
key: "pipedream_utils-set-default-value",
6-
version: "0.0.5",
6+
version: "0.0.6",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: false,
10+
readOnlyHint: false,
11+
},
712
type: "action",
813
props: {
914
pipedream_utils,

components/pipedream_utils/actions/split-text/split-text.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
name: "Formatting - [Text] Split Text",
88
description: "Split the text on a character or word and return one or all segments",
99
key: "pipedream_utils-split-text",
10-
version: "0.0.5",
10+
version: "0.0.6",
11+
annotations: {
12+
destructiveHint: false,
13+
openWorldHint: false,
14+
readOnlyHint: false,
15+
},
1116
type: "action",
1217
props: {
1318
pipedream_utils,

components/pipedream_utils/actions/transform-case/transform-case.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ export default {
77
name: "Formatting - [Text] Transform Case",
88
description: "Transform case for a text input",
99
key: "pipedream_utils-transform-case",
10-
version: "0.0.5",
10+
version: "0.0.6",
11+
annotations: {
12+
destructiveHint: false,
13+
openWorldHint: true,
14+
readOnlyHint: false,
15+
},
1116
type: "action",
1217
props: {
1318
pipedream_utils,

components/pipedream_utils/actions/trigger-workflow/trigger-workflow.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "pipedream_utils-trigger-workflow",
55
name: "Helper Functions - Trigger Workflow",
66
description: "Trigger another Pipedream workflow in your workspace.",
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
pipedream_utils,

components/pipedream_utils/actions/trim-whitespace/trim-whitespace.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ export default {
33
name: "Formatting - [Text] Trim Whitespace",
44
description: "Removes leading and trailing whitespace",
55
key: "pipedream_utils-trim-whitespace",
6-
version: "0.0.5",
6+
version: "0.0.6",
7+
annotations: {
8+
destructiveHint: true,
9+
openWorldHint: false,
10+
readOnlyHint: false,
11+
},
712
type: "action",
813
props: {
914
pipedream_utils,

components/pipedream_utils/actions/url-decode/url-decode.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ export default {
33
name: "Formatting - [Text] Decode URL",
44
description: "Decode a URL string",
55
key: "pipedream_utils-url-decode",
6-
version: "0.0.5",
6+
version: "0.0.6",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: false,
10+
readOnlyHint: false,
11+
},
712
type: "action",
813
props: {
914
pipedream_utils,

0 commit comments

Comments
 (0)