Skip to content

Commit 6807b6c

Browse files
committed
feat: MCP annotations batch 6/65 (100 components)
1 parent 61d0151 commit 6807b6c

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/belco/actions/close-conversation/close-conversation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-close-conversation",
55
name: "Close Conversation",
66
description: "Close a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/put_conversations-conversationid-close)",
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
belco,

components/belco/actions/create-conversation/create-conversation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-create-conversation",
55
name: "Create Conversation",
66
description: "Create a conversation from Belco. [See the documentation](https://developers.belco.io/reference/post_conversations)",
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
belco,

components/belco/actions/list-all-conversations/list-all-conversations.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-list-all-conversations",
55
name: "List All Conversations",
66
description: "Get a list of conversations from Belco. [See the documentation](https://developers.belco.io/reference/get_conversations)",
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
belco,

components/belco/actions/reopen-conversation/reopen-conversation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-reopen-conversation",
55
name: "Reopen Conversation",
66
description: "Reopen a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/put_conversations-conversationid-open)",
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
belco,

components/belco/actions/reply-to-conversation/reply-to-conversation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-reply-to-conversation",
55
name: "Reply to Conversation",
66
description: "Reply to a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/put_conversations-conversationid-reply)",
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
belco,

components/belco/actions/retrieve-conversation/retrieve-conversation.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-retrieve-conversation",
55
name: "Retrieve Conversation",
66
description: "Retrieve a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/get_conversations-conversationid)",
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
belco,

components/belco/actions/send-message/send-message.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ export default {
44
key: "belco-send-message",
55
name: "Send Message",
66
description: "Send a message to a conversation specified by ID. [See the documentation](https://developers.belco.io/reference/post_conversations-sendmessage)",
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
belco,

components/benchmarkone/actions/add-note/add-note.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "benchmarkone-add-note",
66
name: "Add Note to Contact",
77
description: "Adds a note to a BenchmarkONE contact. [See the documentation](https://sandbox.hatchbuck.com/api/dist/#!/Notes/post_contact_email_address_or_contact_ID_notes).",
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
benchmarkone,

components/benchmarkone/actions/add-tag/add-tag.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ export default {
55
key: "benchmarkone-add-tag",
66
name: "Add Tag to Contact",
77
description: "Adds tags to a contact. If the contact does not exist, it will be created first. [See the documentation](https://sandbox.hatchbuck.com/api/dist/#/Tags).",
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
benchmarkone,

components/benchmarkone/actions/create-contact/create-contact.mjs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ export default {
66
key: "benchmarkone-create-contact",
77
name: "Create Contact",
88
description: "Creates a new contact in BenchmarkONE. [See the documentation](https://sandbox.hatchbuck.com/api/dist/#!/Contacts/post_contact)",
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
benchmarkone,

0 commit comments

Comments
 (0)