Skip to content

Commit a44b7ad

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

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/codemagic/actions/add-application/add-application.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "codemagic-add-application",
55
name: "Create Application",
66
description: "Creates a new application codemagic. [See the documentation](https://docs.codemagic.io/rest-api/applications/#add-a-new-application)",
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/codemagic/actions/create-variable/create-variable.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "codemagic-create-variable",
55
name: "Create Variable",
66
description: "Create a variable in the specified workflow. [See the documentation](https://docs.codemagic.io/rest-api/applications/#add-new-variable)",
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/codemagic/actions/list-application/list-application.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "codemagic-list-application",
55
name: "List Applications",
66
description: "List applications in codemagic. [See the documentation](https://docs.codemagic.io/rest-api/applications/#retrieve-all-applications)",
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/codeq_natural_language_processing_api/actions/analyze-document/analyze-document.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import codeqNaturalLanguageProcessingApi from "../../codeq_natural_language_proc
33
export default {
44
key: "codeq_natural_language_processing_api-analyze-document",
55
name: "Analyze Document",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: true,
11+
},
712
description: "Receives a text and returns a JSON object containing a list of analyzed sentences. [See the docs here](https://api.codeq.com/api)",
813
type: "action",
914
props: {

components/codeq_natural_language_processing_api/actions/check-similarity/check-similarity.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ import codeqNaturalLanguageProcessingApi from "../../codeq_natural_language_proc
33
export default {
44
key: "codeq_natural_language_processing_api-check-similarity",
55
name: "Check Similarity",
6-
version: "0.0.1",
6+
version: "0.0.2",
7+
annotations: {
8+
destructiveHint: false,
9+
openWorldHint: true,
10+
readOnlyHint: true,
11+
},
712
description: "Receives two texts and returns a JSON object containing the text similarity score. [See the docs here](https://api.codeq.com/api)",
813
type: "action",
914
props: {

components/codeqr/actions/create-link/create-link.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
name: "Create a CodeQR Link",
66
description:
77
"Creates a short link in CodeQR using the CodeQR API. [See the documentation](https://codeqr.mintlify.app/api-reference/endpoint/create-a-link)",
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
codeqr,

components/codeqr/actions/create-qrcode/create-qrcode.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
name: "Create a QR Code",
66
description:
77
"Creates a new QR Code in CodeQR using the QR Codes API. [See the documentation](https://codeqr.mintlify.app/api-reference/endpoint/create-a-qrcode)",
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
codeqr,

components/codeqr/actions/delete-link/delete-link.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "codeqr-delete-link",
66
name: "Delete a Link",
77
description: "Deletes a short link in CodeQR by linkId or externalId. [See the documentation](https://codeqr.mintlify.app/api-reference/endpoint/delete-a-link)",
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
codeqr,

components/codeqr/actions/delete-qrcode/delete-qrcode.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
name: "Delete a QR Code",
77
description:
88
"Deletes a QR Code in CodeQR by qrcodeId or externalId. [See the documentation](https://codeqr.mintlify.app/api-reference/endpoint/delete-a-qrcode)",
9-
version: "0.0.1",
9+
version: "0.0.2",
10+
annotations: {
11+
destructiveHint: true,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
type: "action",
1116
props: {
1217
codeqr,

components/codeqr/actions/get-link-info/get-link-info.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
name: "Get a Link Info",
77
description:
88
"Retrieves a short link from CodeQR by linkId, externalId, or domain/key via query string parameters. [See the documentation](https://codeqr.mintlify.app/api-reference/endpoint/retrieve-a-link)",
9-
version: "0.0.1",
9+
version: "0.0.2",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: true,
14+
},
1015
type: "action",
1116
props: {
1217
codeqr,

0 commit comments

Comments
 (0)