@mondaydotcomorg/agent-toolkit 3.0.4 → 3.0.6
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/README.md +10 -0
- package/dist/cjs/core/index.js +177 -124
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +177 -124
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +179 -126
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +174 -121
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +179 -126
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +178 -125
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@ The package provides several modular components that can be imported separately:
|
|
|
21
21
|
The toolkit includes several pre-built tools for common monday.com operations, organized by functionality:
|
|
22
22
|
|
|
23
23
|
### Item Operations
|
|
24
|
+
|
|
24
25
|
- `CreateItemTool` - Create a new item in a monday.com board
|
|
25
26
|
- `DeleteItemTool` - Delete an item from a board
|
|
26
27
|
- `GetBoardItemsPageTool` - Get items by board id and apply filters
|
|
@@ -29,6 +30,7 @@ The toolkit includes several pre-built tools for common monday.com operations, o
|
|
|
29
30
|
- `MoveItemToGroupTool` - Move an item to a group in a monday.com board
|
|
30
31
|
|
|
31
32
|
### Board Operations
|
|
33
|
+
|
|
32
34
|
- `CreateBoardTool` - Create a monday.com board
|
|
33
35
|
- `GetBoardSchemaTool` - Get board schema (columns and groups) by board id
|
|
34
36
|
- `CreateGroupTool` - Create a new group in a monday.com board
|
|
@@ -36,20 +38,28 @@ The toolkit includes several pre-built tools for common monday.com operations, o
|
|
|
36
38
|
- `DeleteColumnTool` - Delete a column from a monday.com board
|
|
37
39
|
|
|
38
40
|
### WorkForms Operations
|
|
41
|
+
|
|
39
42
|
- `CreateFormTool` - Create a monday.com form
|
|
40
43
|
- `GetFormTool` - Get a form by its token, found in the form's URL
|
|
41
44
|
- `UpdateFormTool` - Update a monday.com form, including updating the form's feature settings, appearance settings, accessibility settings, title, description, question order, form tags, and form password
|
|
42
45
|
- `FormQuestionsEditorTool` - Create, update, or delete a question in a monday.com form
|
|
43
46
|
|
|
44
47
|
### Account Operations
|
|
48
|
+
|
|
45
49
|
- `ListUsersAndTeams` - Get users or teams, either by ids, names or by searching the account
|
|
46
50
|
|
|
47
51
|
### Workspace Operations
|
|
52
|
+
|
|
48
53
|
- `ListWorkspaceTool` - List workspaces available to the user, prioritizing workspaces where the user is a member
|
|
49
54
|
|
|
50
55
|
### Dynamic API Tools
|
|
56
|
+
|
|
51
57
|
- `AllMondayApiTool` - Execute any monday.com API operation by generating GraphQL queries and mutations dynamically
|
|
52
58
|
- `GetGraphQLSchemaTool` - Fetch the monday.com GraphQL schema structure including query and mutation definitions
|
|
53
59
|
- `GetTypeDetailsTool` - Get detailed information about a specific GraphQL type from the monday.com API schema
|
|
54
60
|
|
|
61
|
+
## Development
|
|
62
|
+
|
|
63
|
+
A Cursor skill is available at `.cursor/skills/agent-toolkit-api-tools/SKILL.md` with detailed guidance on creating and modifying platform API tools, including the GraphQL codegen pipeline, tool registration, and version bumping.
|
|
64
|
+
|
|
55
65
|
## Usage
|