@mondaydotcomorg/agent-toolkit 2.11.1 → 2.12.0
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 -4
- package/dist/cjs/core/index.js +454 -30
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.d.ts +1 -1
- package/dist/cjs/mcp/index.js +455 -31
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +454 -30
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +454 -30
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.d.ts +1 -1
- package/dist/esm/mcp/index.js +455 -31
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +454 -30
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ The package provides several modular components that can be imported separately:
|
|
|
18
18
|
|
|
19
19
|
## Available Tools
|
|
20
20
|
|
|
21
|
-
The toolkit includes several pre-built tools for common
|
|
21
|
+
The toolkit includes several pre-built tools for common monday.com operations, organized by functionality:
|
|
22
22
|
|
|
23
23
|
### Item Operations
|
|
24
24
|
- `CreateItemTool` - Create a new item in a monday.com board
|
|
@@ -31,15 +31,21 @@ The toolkit includes several pre-built tools for common Monday.com operations, o
|
|
|
31
31
|
### Board Operations
|
|
32
32
|
- `CreateBoardTool` - Create a monday.com board
|
|
33
33
|
- `GetBoardSchemaTool` - Get board schema (columns and groups) by board id
|
|
34
|
+
- `CreateGroupTool` - Create a new group in a monday.com board
|
|
34
35
|
- `CreateColumnTool` - Create a new column in a monday.com board
|
|
35
36
|
- `DeleteColumnTool` - Delete a column from a monday.com board
|
|
36
37
|
|
|
38
|
+
### WorkForms Operations
|
|
39
|
+
- `CreateFormTool` - Create a monday.com form
|
|
40
|
+
- `GetFormTool` - Get a form by its token, found in the form's URL
|
|
41
|
+
|
|
37
42
|
### Account Operations
|
|
38
43
|
- `GetUsersTool` - Get users, can be filtered by name or partial name
|
|
44
|
+
- `ListUsersAndTeams` - Get users or teams, either by ids, names or by searching the account
|
|
39
45
|
|
|
40
46
|
### Dynamic API Tools
|
|
41
|
-
- `AllMondayApiTool` - Execute any
|
|
42
|
-
- `GetGraphQLSchemaTool` - Fetch the
|
|
43
|
-
- `GetTypeDetailsTool` - Get detailed information about a specific GraphQL type from the
|
|
47
|
+
- `AllMondayApiTool` - Execute any monday.com API operation by generating GraphQL queries and mutations dynamically
|
|
48
|
+
- `GetGraphQLSchemaTool` - Fetch the monday.com GraphQL schema structure including query and mutation definitions
|
|
49
|
+
- `GetTypeDetailsTool` - Get detailed information about a specific GraphQL type from the monday.com API schema
|
|
44
50
|
|
|
45
51
|
## Usage
|