@@ -294,6 +294,8 @@ The following sets of tools are available (all are on by default):
294
294
| ` repos ` | GitHub Repository related tools |
295
295
| ` secret_protection ` | Secret protection related tools, such as GitHub Secret Scanning |
296
296
| ` users ` | GitHub User related tools |
297
+ | ` gists ` | GitHub Gist related tools |
298
+
297
299
<!-- END AUTOMATED TOOLSETS -->
298
300
299
301
## Tools
@@ -866,6 +868,7 @@ The following sets of tools are available (all are on by default):
866
868
867
869
</details >
868
870
871
+
869
872
<details >
870
873
871
874
<summary >Users</summary >
@@ -878,6 +881,31 @@ The following sets of tools are available (all are on by default):
878
881
- ` sort ` : Sort field by category (string, optional)
879
882
880
883
</details >
884
+ <details >
885
+
886
+ <summary >Gists</summary >
887
+
888
+ - ** list_gist** - List gists for a user
889
+ - ` username ` : GitHub username (omit for authenticated user's gists) (string optional)
890
+ - ` since ` : Only gists updated after this time (ISO 8601 timestamp) (string, required)
891
+ - ` page ` : Page number (min 1) (number, optional)
892
+ - ` perPage ` : Results per page for pagination (min 1, max 100) (number, optional)
893
+
894
+ - ** create_gist** - Create a new gist
895
+ - ` description ` : Description of the gist (string, optional)
896
+ - ` filename ` : Filename for gist file (string, required)
897
+ - ` content ` : Content for gist file (string, required)
898
+ - ` public ` : Whether the gist is public (boolean, default: false)
899
+
900
+
901
+ - ** update_gist** - Update an existing gist
902
+ - ` gist_id ` : ID of the gist to update (string, required)
903
+ - ` description ` : Description of the gist (string, optional)
904
+ - ` filename ` : Filename for gist file (string, required)
905
+ - ` content ` : Content for gist file (string, required)
906
+
907
+ </details >
908
+
881
909
<!-- END AUTOMATED TOOLS -->
882
910
883
911
### Additional Tools in Remote Github MCP Server
@@ -1048,4 +1076,4 @@ The exported Go API of this module should currently be considered unstable, and
1048
1076
1049
1077
## License
1050
1078
1051
- This project is licensed under the terms of the MIT open source license. Please refer to [ MIT] ( ./LICENSE ) for the full terms.
1079
+ This project is licensed under the terms of the MIT open source license. Please refer to [ MIT] ( ./LICENSE ) for the full terms.
0 commit comments