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-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -659,12 +659,18 @@ The following sets of tools are available (all are on by default):
659
659
<summary>Projects</summary>
660
660
661
661
-**get_project** - Get project
662
-
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == organization it is the name of the organization. The name is not case sensitive. (string, required)
662
+
-`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)
663
663
-`owner_type`: Owner type (string, required)
664
664
-`project_number`: The project's number (number, required)
665
665
666
+
-**list_project_fields** - List project fields
667
+
-`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)
668
+
-`owner_type`: Owner type (string, required)
669
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
+
-`projectNumber`: The project's number. (string, required)
671
+
666
672
-**list_projects** - List projects
667
-
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == organization it is the name of the organization. The name is not case sensitive. (string, required)
673
+
-`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)
668
674
-`owner_type`: Owner type (string, required)
669
675
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
676
-`query`: Filter projects by a search query (matches title and description) (string, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/get_project.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,18 @@
3
3
"title": "Get project",
4
4
"readOnlyHint": true
5
5
},
6
-
"description": "Get Project for an user or organization",
6
+
"description": "Get Project for an user or org",
7
7
"inputSchema": {
8
8
"properties": {
9
9
"owner": {
10
-
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == organization it is the name of the organization. The name is not case sensitive.",
10
+
"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.",
"description": "List Project fields for an user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"owner": {
10
+
"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.",
11
+
"type": "string"
12
+
},
13
+
"owner_type": {
14
+
"description": "Owner type",
15
+
"enum": [
16
+
"user",
17
+
"org"
18
+
],
19
+
"type": "string"
20
+
},
21
+
"per_page": {
22
+
"description": "Number of results per page (max 100, default: 30)",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_projects.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,18 +3,18 @@
3
3
"title": "List projects",
4
4
"readOnlyHint": true
5
5
},
6
-
"description": "List Projects for a user or organization",
6
+
"description": "List Projects for an user or org",
7
7
"inputSchema": {
8
8
"properties": {
9
9
"owner": {
10
-
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == organization it is the name of the organization. The name is not case sensitive.",
10
+
"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 == organization 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.")),
26
26
mcp.WithString("query", mcp.Description("Filter projects by a search query (matches title and description)")),
27
27
mcp.WithNumber("per_page", mcp.Description("Number of results per page (max 100, default: 30)")),
mcp.WithString("owner", mcp.Required(), mcp.Description("If owner_type == user it is the handle for the GitHub user account. If owner_type == organization 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.")),
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