@commandable/integration-data 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/credentials-index.d.ts.map +1 -1
- package/dist/credentials-index.js +119 -0
- package/dist/credentials-index.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/loader.d.ts +33 -0
- package/dist/loader.d.ts.map +1 -1
- package/dist/loader.js +36 -4
- package/dist/loader.js.map +1 -1
- package/integrations/__tests__/liveHarness.ts +16 -3
- package/integrations/airtable/.env.test +9 -0
- package/integrations/airtable/.env.test.example +11 -0
- package/integrations/airtable/README.md +27 -0
- package/integrations/airtable/__tests__/get_handlers.test.ts +43 -5
- package/integrations/confluence/.env.test +25 -0
- package/integrations/confluence/.env.test.example +36 -0
- package/integrations/confluence/README.md +28 -0
- package/integrations/confluence/__tests__/get_handlers.test.ts +121 -0
- package/integrations/confluence/__tests__/usage_parity.test.ts +14 -0
- package/integrations/confluence/__tests__/write_handlers.test.ts +131 -0
- package/integrations/confluence/credentials.json +39 -0
- package/integrations/confluence/credentials_hint.md +4 -0
- package/integrations/confluence/credentials_hint_api_token.md +9 -0
- package/integrations/confluence/credentials_hint_oauth_token.md +8 -0
- package/integrations/confluence/handlers/add_comment.js +19 -0
- package/integrations/confluence/handlers/add_label.js +16 -0
- package/integrations/confluence/handlers/create_page.js +22 -0
- package/integrations/confluence/handlers/delete_page.js +17 -0
- package/integrations/confluence/handlers/get_comments.js +33 -0
- package/integrations/confluence/handlers/get_page_children.js +30 -0
- package/integrations/confluence/handlers/get_space.js +22 -0
- package/integrations/confluence/handlers/list_spaces.js +39 -0
- package/integrations/confluence/handlers/read_page.js +49 -0
- package/integrations/confluence/handlers/search_pages.js +42 -0
- package/integrations/confluence/handlers/update_page.js +42 -0
- package/integrations/confluence/manifest.json +85 -0
- package/integrations/confluence/prompt.md +55 -0
- package/integrations/confluence/schemas/add_comment.json +22 -0
- package/integrations/confluence/schemas/add_label.json +19 -0
- package/integrations/confluence/schemas/create_page.json +33 -0
- package/integrations/confluence/schemas/delete_page.json +23 -0
- package/integrations/confluence/schemas/empty.json +6 -0
- package/integrations/confluence/schemas/get_comments.json +24 -0
- package/integrations/confluence/schemas/get_page_children.json +28 -0
- package/integrations/confluence/schemas/get_space.json +18 -0
- package/integrations/confluence/schemas/list_spaces.json +36 -0
- package/integrations/confluence/schemas/read_page.json +28 -0
- package/integrations/confluence/schemas/search_pages.json +26 -0
- package/integrations/confluence/schemas/update_page.json +31 -0
- package/integrations/github/.env.test +16 -0
- package/integrations/github/.env.test.example +17 -0
- package/integrations/github/README.md +75 -0
- package/integrations/github/__tests__/get_handlers.test.ts +5 -5
- package/integrations/github/__tests__/write_handlers.test.ts +176 -58
- package/integrations/github/handlers/create_file.js +46 -0
- package/integrations/github/handlers/delete_file.js +14 -1
- package/integrations/github/handlers/edit_file.js +52 -0
- package/integrations/github/handlers/edit_files.js +107 -0
- package/integrations/github/manifest.json +74 -47
- package/integrations/github/prompt.md +36 -0
- package/integrations/github/schemas/create_file.json +13 -0
- package/integrations/github/schemas/delete_file.json +2 -2
- package/integrations/github/schemas/edit_file.json +26 -0
- package/integrations/github/schemas/edit_files.json +39 -0
- package/integrations/google-calendar/.env.test.example +11 -0
- package/integrations/google-calendar/README.md +41 -0
- package/integrations/google-calendar/__tests__/write_and_admin_handlers.test.ts +7 -7
- package/integrations/google-calendar/manifest.json +27 -17
- package/integrations/google-docs/README.md +30 -0
- package/integrations/google-drive/README.md +26 -0
- package/integrations/google-gmail/.env.test.example +11 -0
- package/integrations/google-gmail/README.md +49 -0
- package/integrations/google-gmail/handlers/create_draft_email.js +1 -1
- package/integrations/google-gmail/handlers/read_email.js +1 -1
- package/integrations/google-gmail/handlers/send_email.js +1 -1
- package/integrations/google-gmail/manifest.json +36 -25
- package/integrations/google-sheet/README.md +27 -0
- package/integrations/google-slides/README.md +28 -0
- package/integrations/hubspot/.env.test.example +20 -0
- package/integrations/hubspot/README.md +48 -0
- package/integrations/hubspot/__tests__/get_handlers.test.ts +151 -0
- package/integrations/hubspot/__tests__/usage_parity.test.ts +10 -0
- package/integrations/hubspot/__tests__/write_handlers.test.ts +244 -0
- package/integrations/hubspot/credentials.json +48 -0
- package/integrations/hubspot/credentials_hint.md +20 -0
- package/integrations/hubspot/credentials_hint_oauth_token.md +16 -0
- package/integrations/hubspot/handlers/archive_company.js +13 -0
- package/integrations/hubspot/handlers/archive_contact.js +13 -0
- package/integrations/hubspot/handlers/archive_deal.js +13 -0
- package/integrations/hubspot/handlers/archive_ticket.js +13 -0
- package/integrations/hubspot/handlers/create_association.js +18 -0
- package/integrations/hubspot/handlers/create_company.js +13 -0
- package/integrations/hubspot/handlers/create_contact.js +14 -0
- package/integrations/hubspot/handlers/create_deal.js +16 -0
- package/integrations/hubspot/handlers/create_note.js +44 -0
- package/integrations/hubspot/handlers/create_task.js +48 -0
- package/integrations/hubspot/handlers/create_ticket.js +15 -0
- package/integrations/hubspot/handlers/get_associations.js +14 -0
- package/integrations/hubspot/handlers/get_company.js +18 -0
- package/integrations/hubspot/handlers/get_contact.js +18 -0
- package/integrations/hubspot/handlers/get_deal.js +18 -0
- package/integrations/hubspot/handlers/get_ticket.js +20 -0
- package/integrations/hubspot/handlers/list_owners.js +12 -0
- package/integrations/hubspot/handlers/list_pipelines.js +5 -0
- package/integrations/hubspot/handlers/list_properties.js +11 -0
- package/integrations/hubspot/handlers/remove_association.js +22 -0
- package/integrations/hubspot/handlers/search_companies.js +43 -0
- package/integrations/hubspot/handlers/search_contacts.js +43 -0
- package/integrations/hubspot/handlers/search_deals.js +43 -0
- package/integrations/hubspot/handlers/search_notes.js +43 -0
- package/integrations/hubspot/handlers/search_tasks.js +43 -0
- package/integrations/hubspot/handlers/search_tickets.js +43 -0
- package/integrations/hubspot/handlers/update_company.js +13 -0
- package/integrations/hubspot/handlers/update_contact.js +14 -0
- package/integrations/hubspot/handlers/update_deal.js +16 -0
- package/integrations/hubspot/handlers/update_task.js +17 -0
- package/integrations/hubspot/handlers/update_ticket.js +15 -0
- package/integrations/hubspot/manifest.json +230 -0
- package/integrations/hubspot/prompt.md +69 -0
- package/integrations/hubspot/schemas/archive_company.json +13 -0
- package/integrations/hubspot/schemas/archive_contact.json +13 -0
- package/integrations/hubspot/schemas/archive_deal.json +9 -0
- package/integrations/hubspot/schemas/archive_ticket.json +9 -0
- package/integrations/hubspot/schemas/create_association.json +24 -0
- package/integrations/hubspot/schemas/create_company.json +14 -0
- package/integrations/hubspot/schemas/create_contact.json +15 -0
- package/integrations/hubspot/schemas/create_deal.json +20 -0
- package/integrations/hubspot/schemas/create_note.json +37 -0
- package/integrations/hubspot/schemas/create_task.json +51 -0
- package/integrations/hubspot/schemas/create_ticket.json +16 -0
- package/integrations/hubspot/schemas/empty.json +6 -0
- package/integrations/hubspot/schemas/get_associations.json +30 -0
- package/integrations/hubspot/schemas/get_company.json +27 -0
- package/integrations/hubspot/schemas/get_contact.json +27 -0
- package/integrations/hubspot/schemas/get_deal.json +20 -0
- package/integrations/hubspot/schemas/get_ticket.json +20 -0
- package/integrations/hubspot/schemas/list_owners.json +25 -0
- package/integrations/hubspot/schemas/list_pipelines.json +13 -0
- package/integrations/hubspot/schemas/list_properties.json +17 -0
- package/integrations/hubspot/schemas/remove_association.json +24 -0
- package/integrations/hubspot/schemas/search_companies.json +56 -0
- package/integrations/hubspot/schemas/search_contacts.json +56 -0
- package/integrations/hubspot/schemas/search_deals.json +43 -0
- package/integrations/hubspot/schemas/search_notes.json +43 -0
- package/integrations/hubspot/schemas/search_tasks.json +43 -0
- package/integrations/hubspot/schemas/search_tickets.json +43 -0
- package/integrations/hubspot/schemas/update_company.json +20 -0
- package/integrations/hubspot/schemas/update_contact.json +21 -0
- package/integrations/hubspot/schemas/update_deal.json +19 -0
- package/integrations/hubspot/schemas/update_task.json +31 -0
- package/integrations/hubspot/schemas/update_ticket.json +18 -0
- package/integrations/jira/.env.test +46 -0
- package/integrations/jira/.env.test.example +41 -0
- package/integrations/jira/README.md +46 -0
- package/integrations/jira/__tests__/get_handlers.test.ts +193 -0
- package/integrations/jira/__tests__/usage_parity.test.ts +14 -0
- package/integrations/jira/__tests__/write_handlers.test.ts +157 -0
- package/integrations/jira/credentials.json +39 -0
- package/integrations/jira/credentials_hint.md +4 -0
- package/integrations/jira/credentials_hint_api_token.md +6 -0
- package/integrations/jira/credentials_hint_oauth_token.md +6 -0
- package/integrations/jira/handlers/add_comment.js +9 -0
- package/integrations/jira/handlers/assign_issue.js +11 -0
- package/integrations/jira/handlers/create_issue.js +37 -0
- package/integrations/jira/handlers/create_sprint.js +19 -0
- package/integrations/jira/handlers/delete_issue.js +10 -0
- package/integrations/jira/handlers/get_backlog_issues.js +13 -0
- package/integrations/jira/handlers/get_board.js +6 -0
- package/integrations/jira/handlers/get_issue.js +63 -0
- package/integrations/jira/handlers/get_issue_comments.js +31 -0
- package/integrations/jira/handlers/get_myself.js +14 -0
- package/integrations/jira/handlers/get_project.js +28 -0
- package/integrations/jira/handlers/get_sprint.js +5 -0
- package/integrations/jira/handlers/get_sprint_issues.js +13 -0
- package/integrations/jira/handlers/get_transitions.js +23 -0
- package/integrations/jira/handlers/list_boards.js +34 -0
- package/integrations/jira/handlers/list_projects.js +29 -0
- package/integrations/jira/handlers/list_sprints.js +29 -0
- package/integrations/jira/handlers/move_issues_to_sprint.js +11 -0
- package/integrations/jira/handlers/search_issues.js +43 -0
- package/integrations/jira/handlers/search_users.js +21 -0
- package/integrations/jira/handlers/transition_issue.js +44 -0
- package/integrations/jira/handlers/update_issue.js +40 -0
- package/integrations/jira/handlers/update_sprint.js +20 -0
- package/integrations/jira/manifest.json +204 -0
- package/integrations/jira/prompt.md +80 -0
- package/integrations/jira/schemas/add_comment.json +16 -0
- package/integrations/jira/schemas/assign_issue.json +16 -0
- package/integrations/jira/schemas/create_issue.json +49 -0
- package/integrations/jira/schemas/create_sprint.json +29 -0
- package/integrations/jira/schemas/delete_issue.json +12 -0
- package/integrations/jira/schemas/empty.json +6 -0
- package/integrations/jira/schemas/get_backlog_issues.json +33 -0
- package/integrations/jira/schemas/get_board.json +13 -0
- package/integrations/jira/schemas/get_issue.json +23 -0
- package/integrations/jira/schemas/get_issue_comments.json +23 -0
- package/integrations/jira/schemas/get_project.json +17 -0
- package/integrations/jira/schemas/get_sprint.json +13 -0
- package/integrations/jira/schemas/get_sprint_issues.json +33 -0
- package/integrations/jira/schemas/get_transitions.json +12 -0
- package/integrations/jira/schemas/list_boards.json +27 -0
- package/integrations/jira/schemas/list_projects.json +22 -0
- package/integrations/jira/schemas/list_sprints.json +29 -0
- package/integrations/jira/schemas/move_issues_to_sprint.json +19 -0
- package/integrations/jira/schemas/search_issues.json +28 -0
- package/integrations/jira/schemas/search_users.json +18 -0
- package/integrations/jira/schemas/transition_issue.json +38 -0
- package/integrations/jira/schemas/update_issue.json +47 -0
- package/integrations/jira/schemas/update_sprint.json +33 -0
- package/integrations/new_integration_prompt.md +173 -2
- package/integrations/notion/.env.test +10 -0
- package/integrations/notion/.env.test.example +13 -0
- package/integrations/notion/README.md +42 -0
- package/integrations/notion/manifest.json +64 -35
- package/integrations/trello/.env.test +6 -0
- package/integrations/trello/.env.test.example +9 -0
- package/integrations/trello/README.md +50 -0
- package/package.json +7 -3
|
@@ -1,139 +1,168 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "notion",
|
|
3
3
|
"version": "0.1.0",
|
|
4
|
+
"toolsets": {
|
|
5
|
+
"pages": {
|
|
6
|
+
"label": "Pages",
|
|
7
|
+
"description": "Find, read, and edit Notion pages, blocks, comments, and users"
|
|
8
|
+
},
|
|
9
|
+
"databases": {
|
|
10
|
+
"label": "Databases",
|
|
11
|
+
"description": "Query and manage Notion databases"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
4
14
|
"tools": [
|
|
5
15
|
{
|
|
6
16
|
"name": "search",
|
|
7
17
|
"description": "Search across all accessible Notion content (pages, databases).",
|
|
8
18
|
"inputSchema": "schemas/search.json",
|
|
9
19
|
"handler": "handlers/search.js",
|
|
10
|
-
"scope": "read"
|
|
20
|
+
"scope": "read",
|
|
21
|
+
"toolset": "pages"
|
|
11
22
|
},
|
|
12
23
|
{
|
|
13
24
|
"name": "retrieve_page",
|
|
14
25
|
"description": "Retrieve a page by ID.",
|
|
15
26
|
"inputSchema": "schemas/id_page.json",
|
|
16
27
|
"handler": "handlers/retrieve_page.js",
|
|
17
|
-
"scope": "read"
|
|
28
|
+
"scope": "read",
|
|
29
|
+
"toolset": "pages"
|
|
18
30
|
},
|
|
19
31
|
{
|
|
20
|
-
"name": "
|
|
21
|
-
"description": "Retrieve a
|
|
22
|
-
"inputSchema": "schemas/
|
|
23
|
-
"handler": "handlers/
|
|
24
|
-
"scope": "read"
|
|
25
|
-
|
|
26
|
-
{
|
|
27
|
-
"name": "query_database",
|
|
28
|
-
"description": "Query a database with optional filter, sorts, and pagination.",
|
|
29
|
-
"inputSchema": "schemas/query_database.json",
|
|
30
|
-
"handler": "handlers/query_database.js",
|
|
31
|
-
"scope": "read"
|
|
32
|
+
"name": "retrieve_page_property_item",
|
|
33
|
+
"description": "Retrieve a specific page property item (handles rollups and pagination).",
|
|
34
|
+
"inputSchema": "schemas/retrieve_page_property_item.json",
|
|
35
|
+
"handler": "handlers/retrieve_page_property_item.js",
|
|
36
|
+
"scope": "read",
|
|
37
|
+
"toolset": "pages"
|
|
32
38
|
},
|
|
33
39
|
{
|
|
34
40
|
"name": "list_block_children",
|
|
35
41
|
"description": "List child blocks for a block (including page blocks).",
|
|
36
42
|
"inputSchema": "schemas/list_block_children.json",
|
|
37
43
|
"handler": "handlers/list_block_children.js",
|
|
38
|
-
"scope": "read"
|
|
44
|
+
"scope": "read",
|
|
45
|
+
"toolset": "pages"
|
|
39
46
|
},
|
|
40
47
|
{
|
|
41
48
|
"name": "retrieve_block",
|
|
42
49
|
"description": "Retrieve a block by ID.",
|
|
43
50
|
"inputSchema": "schemas/id_block.json",
|
|
44
51
|
"handler": "handlers/retrieve_block.js",
|
|
45
|
-
"scope": "read"
|
|
52
|
+
"scope": "read",
|
|
53
|
+
"toolset": "pages"
|
|
46
54
|
},
|
|
47
55
|
{
|
|
48
56
|
"name": "list_users",
|
|
49
57
|
"description": "List users in the workspace.",
|
|
50
58
|
"inputSchema": "schemas/list_users.json",
|
|
51
59
|
"handler": "handlers/list_users.js",
|
|
52
|
-
"scope": "read"
|
|
60
|
+
"scope": "read",
|
|
61
|
+
"toolset": "pages"
|
|
53
62
|
},
|
|
54
63
|
{
|
|
55
64
|
"name": "retrieve_user",
|
|
56
65
|
"description": "Retrieve a user by ID.",
|
|
57
66
|
"inputSchema": "schemas/id_user.json",
|
|
58
67
|
"handler": "handlers/retrieve_user.js",
|
|
59
|
-
"scope": "read"
|
|
68
|
+
"scope": "read",
|
|
69
|
+
"toolset": "pages"
|
|
60
70
|
},
|
|
61
71
|
{
|
|
62
72
|
"name": "list_comments",
|
|
63
73
|
"description": "List comments for a given discussion or page block.",
|
|
64
74
|
"inputSchema": "schemas/list_comments.json",
|
|
65
75
|
"handler": "handlers/list_comments.js",
|
|
66
|
-
"scope": "read"
|
|
76
|
+
"scope": "read",
|
|
77
|
+
"toolset": "pages"
|
|
67
78
|
},
|
|
68
79
|
{
|
|
69
80
|
"name": "get_me",
|
|
70
81
|
"description": "Retrieve the authenticated user (bot) profile.",
|
|
71
82
|
"inputSchema": "schemas/empty.json",
|
|
72
83
|
"handler": "handlers/get_me.js",
|
|
73
|
-
"scope": "read"
|
|
74
|
-
|
|
75
|
-
{
|
|
76
|
-
"name": "retrieve_page_property_item",
|
|
77
|
-
"description": "Retrieve a specific page property item (handles rollups and pagination).",
|
|
78
|
-
"inputSchema": "schemas/retrieve_page_property_item.json",
|
|
79
|
-
"handler": "handlers/retrieve_page_property_item.js",
|
|
80
|
-
"scope": "read"
|
|
84
|
+
"scope": "read",
|
|
85
|
+
"toolset": "pages"
|
|
81
86
|
},
|
|
82
87
|
{
|
|
83
88
|
"name": "create_page",
|
|
84
89
|
"description": "Create a new page in a database or as a child of a page.",
|
|
85
90
|
"inputSchema": "schemas/create_page.json",
|
|
86
91
|
"handler": "handlers/create_page.js",
|
|
87
|
-
"scope": "write"
|
|
92
|
+
"scope": "write",
|
|
93
|
+
"toolset": "pages"
|
|
88
94
|
},
|
|
89
95
|
{
|
|
90
96
|
"name": "update_page_properties",
|
|
91
97
|
"description": "Update page properties, archive/unarchive, icon and cover.",
|
|
92
98
|
"inputSchema": "schemas/update_page_properties.json",
|
|
93
99
|
"handler": "handlers/update_page_properties.js",
|
|
94
|
-
"scope": "write"
|
|
100
|
+
"scope": "write",
|
|
101
|
+
"toolset": "pages"
|
|
95
102
|
},
|
|
96
103
|
{
|
|
97
104
|
"name": "append_block_children",
|
|
98
105
|
"description": "Append child blocks to a block (including page blocks).",
|
|
99
106
|
"inputSchema": "schemas/append_block_children.json",
|
|
100
107
|
"handler": "handlers/append_block_children.js",
|
|
101
|
-
"scope": "write"
|
|
108
|
+
"scope": "write",
|
|
109
|
+
"toolset": "pages"
|
|
102
110
|
},
|
|
103
111
|
{
|
|
104
112
|
"name": "update_block",
|
|
105
113
|
"description": "Update a block (content, archived state, etc).",
|
|
106
114
|
"inputSchema": "schemas/update_block.json",
|
|
107
115
|
"handler": "handlers/update_block.js",
|
|
108
|
-
"scope": "write"
|
|
116
|
+
"scope": "write",
|
|
117
|
+
"toolset": "pages"
|
|
109
118
|
},
|
|
110
119
|
{
|
|
111
120
|
"name": "delete_block",
|
|
112
121
|
"description": "Archive a block (soft delete).",
|
|
113
122
|
"inputSchema": "schemas/delete_block.json",
|
|
114
123
|
"handler": "handlers/delete_block.js",
|
|
115
|
-
"scope": "write"
|
|
124
|
+
"scope": "write",
|
|
125
|
+
"toolset": "pages"
|
|
116
126
|
},
|
|
117
127
|
{
|
|
118
128
|
"name": "create_comment",
|
|
119
129
|
"description": "Create a comment on a discussion or block.",
|
|
120
130
|
"inputSchema": "schemas/create_comment.json",
|
|
121
131
|
"handler": "handlers/create_comment.js",
|
|
122
|
-
"scope": "write"
|
|
132
|
+
"scope": "write",
|
|
133
|
+
"toolset": "pages"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "retrieve_database",
|
|
137
|
+
"description": "Retrieve a database by ID.",
|
|
138
|
+
"inputSchema": "schemas/id_database.json",
|
|
139
|
+
"handler": "handlers/retrieve_database.js",
|
|
140
|
+
"scope": "read",
|
|
141
|
+
"toolset": "databases"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"name": "query_database",
|
|
145
|
+
"description": "Query a database with optional filter, sorts, and pagination.",
|
|
146
|
+
"inputSchema": "schemas/query_database.json",
|
|
147
|
+
"handler": "handlers/query_database.js",
|
|
148
|
+
"scope": "read",
|
|
149
|
+
"toolset": "databases"
|
|
123
150
|
},
|
|
124
151
|
{
|
|
125
152
|
"name": "create_database",
|
|
126
153
|
"description": "Create a new database under a page.",
|
|
127
154
|
"inputSchema": "schemas/create_database.json",
|
|
128
155
|
"handler": "handlers/create_database.js",
|
|
129
|
-
"scope": "write"
|
|
156
|
+
"scope": "write",
|
|
157
|
+
"toolset": "databases"
|
|
130
158
|
},
|
|
131
159
|
{
|
|
132
160
|
"name": "update_database",
|
|
133
161
|
"description": "Update database title, description, properties, or archived state.",
|
|
134
162
|
"inputSchema": "schemas/update_database.json",
|
|
135
163
|
"handler": "handlers/update_database.js",
|
|
136
|
-
"scope": "write"
|
|
164
|
+
"scope": "write",
|
|
165
|
+
"toolset": "databases"
|
|
137
166
|
}
|
|
138
167
|
]
|
|
139
168
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Trello (credentials mode uses key+token as query params; tests create/close/delete a board per run)
|
|
2
|
+
# Get an API key + token:
|
|
3
|
+
# - Key: `https://trello.com/power-ups/admin` (select your Power-Up, then API key)
|
|
4
|
+
# - Token: `https://trello.com/1/authorize?expiration=never&name=CommandableTests&scope=read,write&response_type=token&key=<YOUR_KEY>`
|
|
5
|
+
TRELLO_API_KEY=a54b5d6ea14cee2ae85d754a5e923f86
|
|
6
|
+
TRELLO_API_TOKEN=ATTA990a95b3d0f319385075acad0dd80915c056a35350c34a198bb47f0e664ead3865118535
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# Trello live integration tests
|
|
2
|
+
#
|
|
3
|
+
# Tests create/close/delete a board per run — credentials use key+token as query params.
|
|
4
|
+
#
|
|
5
|
+
# Get an API key + token:
|
|
6
|
+
# - Key: https://trello.com/power-ups/admin (select your Power-Up, then API key)
|
|
7
|
+
# - Token: https://trello.com/1/authorize?expiration=never&name=CommandableTests&scope=read,write&response_type=token&key=<YOUR_KEY>
|
|
8
|
+
TRELLO_API_KEY=
|
|
9
|
+
TRELLO_API_TOKEN=
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Trello
|
|
2
|
+
|
|
3
|
+
**34 tools**
|
|
4
|
+
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## Credential variants
|
|
8
|
+
|
|
9
|
+
| Variant | Label |
|
|
10
|
+
|---|---|
|
|
11
|
+
| `api_key_token` | API Key + Token _(default)_ |
|
|
12
|
+
|
|
13
|
+
## Tools
|
|
14
|
+
|
|
15
|
+
| Tool | Scope | Description |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| `get_member` | read | Fetch the current member profile. |
|
|
18
|
+
| `get_member_boards` | read | List boards for the current member. |
|
|
19
|
+
| `get_member_organizations` | read | List organizations (workspaces) for the current member. |
|
|
20
|
+
| `get_board` | read | Fetch a board by id. |
|
|
21
|
+
| `get_board_lists` | read | List lists on a board. |
|
|
22
|
+
| `get_board_cards` | read | List cards on a board. |
|
|
23
|
+
| `get_board_members` | read | List members on a board. |
|
|
24
|
+
| `get_board_labels` | read | List labels on a board. |
|
|
25
|
+
| `get_board_custom_fields` | read | List custom fields on a board. |
|
|
26
|
+
| `get_board_memberships` | read | List memberships for a board. |
|
|
27
|
+
| `get_list` | read | Fetch a list by id. |
|
|
28
|
+
| `get_list_cards` | read | List cards in a list. |
|
|
29
|
+
| `get_card` | read | Fetch a card by id. |
|
|
30
|
+
| `get_card_members` | read | List members assigned to a card. |
|
|
31
|
+
| `get_card_attachments` | read | List attachments on a card. |
|
|
32
|
+
| `get_card_actions` | read | List actions (activity) on a card. |
|
|
33
|
+
| `get_card_checklists` | read | List checklists on a card. |
|
|
34
|
+
| `get_card_custom_field_items` | read | Get custom field items on a card. |
|
|
35
|
+
| `get_organization` | read | Fetch an organization (workspace) by id. |
|
|
36
|
+
| `get_organization_boards` | read | List boards in an organization (workspace). |
|
|
37
|
+
| `search` | read | Search across boards, cards, and members. |
|
|
38
|
+
| `create_board` | write | Create a new board. |
|
|
39
|
+
| `close_board` | write | Close a board (set closed=true). |
|
|
40
|
+
| `delete_board` | write | Permanently delete a closed board. |
|
|
41
|
+
| `create_card` | write | Create a new card in a list. |
|
|
42
|
+
| `update_card` | write | Update a card's fields (name, desc, due, list, etc). |
|
|
43
|
+
| `delete_card` | write | Delete a card. |
|
|
44
|
+
| `move_card_to_list` | write | Move a card to another list. |
|
|
45
|
+
| `add_member_to_card` | write | Add a member to a card. |
|
|
46
|
+
| `remove_member_from_card` | write | Remove a member from a card. |
|
|
47
|
+
| `add_checklist_to_card` | write | Create a checklist on a card. |
|
|
48
|
+
| `create_list` | write | Create a new list on a board. |
|
|
49
|
+
| `update_list` | write | Update a list (name, pos, closed). |
|
|
50
|
+
| `archive_list` | write | Archive a list (set closed=true). |
|
package/package.json
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commandable/integration-data",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Integration data (manifests, schemas, handlers, credential configs) for Commandable integrations.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
9
|
-
"directory": "
|
|
8
|
+
"url": "git+https://github.com/commandable/commandable-mcp.git",
|
|
9
|
+
"directory": "packages/integration-data"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/commandable/commandable-mcp#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/commandable/commandable-mcp/issues"
|
|
10
14
|
},
|
|
11
15
|
"type": "module",
|
|
12
16
|
"main": "./dist/index.js",
|