You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -983,9 +983,10 @@ The following sets of tools are available:
983
983
-`fields`: Specific list of field IDs to include in the response when getting a project item (e.g. ["102589", "985201", "169875"]). If not provided, only the title field is included. Only used for 'get_project_item' method. (string[], optional)
984
984
-`item_id`: The item's ID. Required for 'get_project_item' method. (number, optional)
985
985
-`method`: The method to execute (string, required)
986
-
-`owner`: The owner (user or organization login). The name is not case sensitive. (string, required)
986
+
-`owner`: The owner (user or organization login). The name is not case sensitive. (string, optional)
987
987
-`owner_type`: Owner type (user or org). If not provided, will be automatically detected. (string, optional)
988
-
-`project_number`: The project's number. (number, required)
988
+
-`project_number`: The project's number. (number, optional)
989
+
-`status_update_id`: The node ID of the project status update. Required for 'get_project_status_update' method. (string, optional)
989
990
990
991
-**projects_list** - List GitHub Projects resources
991
992
-**Required OAuth Scopes**: `read:project`
@@ -997,11 +998,12 @@ The following sets of tools are available:
997
998
-`owner`: The owner (user or organization login). The name is not case sensitive. (string, required)
998
999
-`owner_type`: Owner type (user or org). If not provided, will automatically try both. (string, optional)
999
1000
-`per_page`: Results per page (max 50) (number, optional)
1000
-
-`project_number`: The project's number. Required for 'list_project_fields'and 'list_project_items' methods. (number, optional)
1001
+
-`project_number`: The project's number. Required for 'list_project_fields', 'list_project_items', and 'list_project_status_updates' methods. (number, optional)
1001
1002
-`query`: Filter/query string. For list_projects: filter by title text and state (e.g. "roadmap is:open"). For list_project_items: advanced filtering using GitHub's project filtering syntax. (string, optional)
1002
1003
1003
1004
-**projects_write** - Modify GitHub Project items
1004
1005
-**Required OAuth Scopes**: `project`
1006
+
-`body`: The body of the status update (markdown). Used for 'create_project_status_update' method. (string, optional)
1005
1007
-`issue_number`: The issue number (use when item_type is 'issue' for 'add_project_item' method). Provide either issue_number or pull_request_number. (number, optional)
1006
1008
-`item_id`: The project item ID. Required for 'update_project_item' and 'delete_project_item' methods. (number, optional)
1007
1009
-`item_owner`: The owner (user or organization) of the repository containing the issue or pull request. Required for 'add_project_item' method. (string, optional)
@@ -1012,6 +1014,9 @@ The following sets of tools are available:
1012
1014
-`owner_type`: Owner type (user or org). If not provided, will be automatically detected. (string, optional)
1013
1015
-`project_number`: The project's number. (number, required)
1014
1016
-`pull_request_number`: The pull request number (use when item_type is 'pull_request' for 'add_project_item' method). Provide either issue_number or pull_request_number. (number, optional)
1017
+
-`start_date`: The start date of the status update in YYYY-MM-DD format. Used for 'create_project_status_update' method. (string, optional)
1018
+
-`status`: The status of the project. Used for 'create_project_status_update' method. (string, optional)
1019
+
-`target_date`: The target date of the status update in YYYY-MM-DD format. Used for 'create_project_status_update' method. (string, optional)
1015
1020
-`updated_field`: Object consisting of the ID of the project field to update and the new value for the field. To clear the field, set value to null. Example: {"id": 123456, "value": "New Value"}. Required for 'update_project_item' method. (object, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/projects_write.snap
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,13 @@
3
3
"destructiveHint": true,
4
4
"title": "Modify GitHub Project items"
5
5
},
6
-
"description": "Add, update, or delete project items in a GitHub Project.",
6
+
"description": "Add, update, or delete project items, or create status updates in a GitHub Project.",
7
7
"inputSchema": {
8
8
"properties": {
9
+
"body": {
10
+
"description": "The body of the status update (markdown). Used for 'create_project_status_update' method.",
11
+
"type": "string"
12
+
},
9
13
"issue_number": {
10
14
"description": "The issue number (use when item_type is 'issue' for 'add_project_item' method). Provide either issue_number or pull_request_number.",
11
15
"type": "number"
@@ -35,7 +39,8 @@
35
39
"enum": [
36
40
"add_project_item",
37
41
"update_project_item",
38
-
"delete_project_item"
42
+
"delete_project_item",
43
+
"create_project_status_update"
39
44
],
40
45
"type": "string"
41
46
},
@@ -59,6 +64,25 @@
59
64
"description": "The pull request number (use when item_type is 'pull_request' for 'add_project_item' method). Provide either issue_number or pull_request_number.",
60
65
"type": "number"
61
66
},
67
+
"start_date": {
68
+
"description": "The start date of the status update in YYYY-MM-DD format. Used for 'create_project_status_update' method.",
69
+
"type": "string"
70
+
},
71
+
"status": {
72
+
"description": "The status of the project. Used for 'create_project_status_update' method.",
73
+
"enum": [
74
+
"INACTIVE",
75
+
"ON_TRACK",
76
+
"AT_RISK",
77
+
"OFF_TRACK",
78
+
"COMPLETE"
79
+
],
80
+
"type": "string"
81
+
},
82
+
"target_date": {
83
+
"description": "The target date of the status update in YYYY-MM-DD format. Used for 'create_project_status_update' method.",
84
+
"type": "string"
85
+
},
62
86
"updated_field": {
63
87
"description": "Object consisting of the ID of the project field to update and the new value for the field. To clear the field, set value to null. Example: {\"id\": 123456, \"value\": \"New Value\"}. Required for 'update_project_item' method.",
0 commit comments