Skip to content

Commit 543b516

Browse files
committed
feat: MCP annotations batch 54/65 (100 components)
1 parent 61d0151 commit 543b516

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/summit/actions/list-models/list-models.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "summit-list-models",
55
name: "List Models",
66
description: "Returns a list of models from Summit. [See the documentation](https://summit.readme.io/reference/apps)",
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
summit,

components/summit/actions/run-model/run-model.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "summit-run-model",
55
name: "Run Model",
66
description: "Executes a model within Summit and captures the response fields. [See the documentation](https://summit.readme.io/reference/model-api)",
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
summit,

components/sumup/actions/get-merchant-profile/get-merchant-profile.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "sumup-get-merchant-profile",
55
name: "Get Merchant Profile",
66
description: "Retrieves merchant profile data. [See the documenation](https://developer.sumup.com/api/merchant/get-merchant-profile)",
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
sumup,

components/sumup/actions/list-transactions/list-transactions.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "sumup-list-transactions",
55
name: "List Transactions",
66
description: "Lists detailed history of all transactions associated with the merchant profile. [See the documenation](https://developer.sumup.com/api/transactions/list-detailed)",
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
sumup,

components/sumup/actions/retrieve-dba/retrieve-dba.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "sumup-retrieve-dba",
55
name: "Retrieve DBA",
66
description: "Retrieves Doing Business As profile. [See the documenation](https://developer.sumup.com/api/merchant/get-doing-business-as)",
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
sumup,

components/supabase/actions/batch-insert-rows/batch-insert-rows.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
key: "supabase-batch-insert-rows",
77
name: "Batch Insert Rows",
88
description: "Inserts new rows into a database. [See the documentation](https://supabase.com/docs/reference/javascript/insert)",
9-
version: "0.0.4",
9+
version: "0.0.5",
10+
annotations: {
11+
destructiveHint: false,
12+
openWorldHint: true,
13+
readOnlyHint: false,
14+
},
1015
type: "action",
1116
props: {
1217
supabase,

components/supabase/actions/delete-row/delete-row.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "supabase-delete-row",
55
name: "Delete Row",
66
type: "action",
7-
version: "0.1.3",
7+
version: "0.1.4",
8+
annotations: {
9+
destructiveHint: true,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Deletes row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/delete)",
914
props: {
1015
supabase,

components/supabase/actions/insert-row/insert-row.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "supabase-insert-row",
55
name: "Insert Row",
66
type: "action",
7-
version: "0.1.3",
7+
version: "0.1.4",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Inserts a new row into a database. [See the docs here](https://supabase.com/docs/reference/javascript/insert)",
914
props: {
1015
supabase,

components/supabase/actions/remote-procedure-call/remote-procedure-call.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "supabase-remote-procedure-call",
55
name: "Remote Procedure Call",
66
type: "action",
7-
version: "0.1.3",
7+
version: "0.1.4",
8+
annotations: {
9+
destructiveHint: false,
10+
openWorldHint: true,
11+
readOnlyHint: false,
12+
},
813
description: "Call a Postgres function in a database. [See the docs here](https://supabase.com/docs/reference/javascript/rpc)",
914
props: {
1015
supabase,

components/supabase/actions/select-row/select-row.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "supabase-select-row",
66
name: "Select Row",
77
type: "action",
8-
version: "0.1.3",
8+
version: "0.1.4",
9+
annotations: {
10+
destructiveHint: false,
11+
openWorldHint: true,
12+
readOnlyHint: false,
13+
},
914
description: "Selects row(s) in a database. [See the docs here](https://supabase.com/docs/reference/javascript/select)",
1015
props: {
1116
supabase,

0 commit comments

Comments
 (0)