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
stale-issue-message: "This issue is stale because it has been open for ${{ env.PR_DAYS_BEFORE_STALE }} days with no activity. Leave a comment to avoid closing this issue in ${{ env.PR_DAYS_BEFORE_CLOSE }} days."
23
+
close-issue-message: "This issue was closed because it has been inactive for ${{ env.PR_DAYS_BEFORE_CLOSE }} days since being marked as stale."
Copy file name to clipboardExpand all lines: README.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,6 +153,7 @@ To keep your GitHub PAT secure and reusable across different MCP hosts:
153
153
-**Minimum scopes**: Only grant necessary permissions
154
154
-`repo` - Repository operations
155
155
-`read:packages` - Docker image access
156
+
-`read:org` - Organization team access
156
157
-**Separate tokens**: Use different PATs for different projects/environments
157
158
-**Regular rotation**: Update tokens periodically
158
159
-**Never commit**: Keep tokens out of version control
@@ -445,6 +446,13 @@ The following sets of tools are available (all are on by default):
445
446
-**get_me** - Get my user profile
446
447
- No parameters required
447
448
449
+
-**get_team_members** - Get team members
450
+
-`org`: Organization login (owner) that contains the team. (string, required)
451
+
-`team_slug`: Team slug (string, required)
452
+
453
+
-**get_teams** - Get teams
454
+
-`user`: Username to get teams for. If not provided, uses the authenticated user. (string, optional)
455
+
448
456
</details>
449
457
450
458
<details>
@@ -559,6 +567,7 @@ The following sets of tools are available (all are on by default):
559
567
-`owner`: Repository owner (string, required)
560
568
-`repo`: Repository name (string, required)
561
569
-`title`: Issue title (string, required)
570
+
-`type`: Type of this issue (string, optional)
562
571
563
572
-**get_issue** - Get issue details
564
573
@@ -574,6 +583,9 @@ The following sets of tools are available (all are on by default):
574
583
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
575
584
-`repo`: Repository name (string, required)
576
585
586
+
-**list_issue_types** - List available issue types
587
+
-`owner`: The organization owner of the repository (string, required)
588
+
577
589
-**list_issues** - List issues
578
590
579
591
-`after`: Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs. (string, optional)
@@ -630,6 +642,7 @@ The following sets of tools are available (all are on by default):
630
642
-`repo`: Repository name (string, required)
631
643
-`state`: New state (string, optional)
632
644
-`title`: New title (string, optional)
645
+
-`type`: New issue type (string, optional)
633
646
634
647
</details>
635
648
@@ -899,6 +912,10 @@ The following sets of tools are available (all are on by default):
899
912
-`repo`: Repository name (string, required)
900
913
-`sha`: Accepts optional commit SHA. If specified, it will be used instead of ref (string, optional)
901
914
915
+
-**get_latest_release** - Get latest release
916
+
-`owner`: Repository owner (string, required)
917
+
-`repo`: Repository name (string, required)
918
+
902
919
-**get_tag** - Get tag details
903
920
904
921
-`owner`: Repository owner (string, required)
@@ -921,6 +938,12 @@ The following sets of tools are available (all are on by default):
921
938
-`repo`: Repository name (string, required)
922
939
-`sha`: Commit SHA, branch or tag name to list commits of. If not provided, uses the default branch of the repository. If a commit SHA is provided, will list commits up to that SHA. (string, optional)
923
940
941
+
-**list_releases** - List releases
942
+
-`owner`: Repository owner (string, required)
943
+
-`page`: Page number for pagination (min 1) (number, optional)
944
+
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
rootCmd.PersistentFlags().Bool("enable-command-logging", false, "When enabled, the server will log all command requests and responses to the log file")
76
77
rootCmd.PersistentFlags().Bool("export-translations", false, "Save translations to a JSON file")
77
78
rootCmd.PersistentFlags().String("gh-host", "", "Specify the GitHub hostname (for GitHub Enterprise etc.)")
79
+
rootCmd.PersistentFlags().Int("content-window-size", 5000, "Specify the content window size")
0 commit comments