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
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -658,6 +658,13 @@ The following sets of tools are available (all are on by default):
658
658
659
659
<summary>Projects</summary>
660
660
661
+
-**add_project_item** - Add project item
662
+
-`item_id`: The numeric ID of the issue or pull request to add to the project. (number, required)
663
+
-`item_type`: The item's type, either issue or pull_request. (string, required)
664
+
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
665
+
-`owner_type`: Owner type (string, required)
666
+
-`project_number`: The project's number. (number, required)
667
+
661
668
-**get_project** - Get project
662
669
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive. (string, required)
"description": "Add a specific Project item for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"item_id": {
10
+
"description": "The numeric ID of the issue or pull request to add to the project.",
11
+
"type": "number"
12
+
},
13
+
"item_type": {
14
+
"description": "The item's type, either issue or pull_request.",
15
+
"enum": [
16
+
"issue",
17
+
"pull_request"
18
+
],
19
+
"type": "string"
20
+
},
21
+
"owner": {
22
+
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive.",
mcp.WithString("owner", mcp.Required(), mcp.Description("If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive.")),
0 commit comments