Skip to content
Closed
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
275d315
docs: add required GitHub token permissions per action (#128)
aryasoni98 Apr 11, 2025
f966e30
Merge branch 'github:main' into main
aryasoni98 Apr 12, 2025
ba78e02
Merge branch 'github:main' into main
aryasoni98 Apr 12, 2025
57c8c75
Merge branch 'github:main' into main
aryasoni98 Apr 16, 2025
b3906c4
Resolve merge conflict in README.md by merging Docker and token permi…
aryasoni98 May 16, 2025
74c5998
Merge branch 'main' of github.com:aryasoni98/github-mcp-server
aryasoni98 May 24, 2025
7fc0586
Merge branch 'main' of github.com:aryasoni98/github-mcp-server
aryasoni98 Jun 3, 2025
165786d
Feat: Add support for GitHub Releases (list and latest) tools
aryasoni98 Jun 3, 2025
5a75247
Merge branch 'main' into issue-461
aryasoni98 Jun 6, 2025
e905d0f
Merge branch 'main' into issue-461
aryasoni98 Jun 8, 2025
ae4e6d3
Merge branch 'main' into issue-461
aryasoni98 Jun 13, 2025
c6e0983
Merge branch 'main' into issue-461
JoannaaKL Aug 12, 2025
4bef534
Update repositories.go
JoannaaKL Aug 12, 2025
527bafd
Update README.md
JoannaaKL Aug 12, 2025
ea4c429
Revise GitHub PAT instructions and permissions section
JoannaaKL Aug 12, 2025
f564171
Merge branch 'main' into issue-461
aryasoni98 Aug 13, 2025
d848d98
Merge branch 'main' into issue-461
aryasoni98 Aug 19, 2025
0d46d58
Merge branch 'main' into issue-461
aryasoni98 Sep 8, 2025
60868ef
Merge branch 'main' into issue-461
aryasoni98 Sep 29, 2025
468d58c
Merge branch 'main' into issue-461
aryasoni98 Oct 5, 2025
6355c62
Merge branch 'main' into issue-461
aryasoni98 Oct 13, 2025
9b7f988
Merge branch 'main' into issue-461
aryasoni98 Oct 13, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1010,6 +1010,10 @@ Possible options:
- `ref`: Accepts optional git refs such as `refs/tags/{tag}`, `refs/heads/{branch}` or `refs/pull/{pr_number}/head` (string, optional)
- `repo`: Repository name (string, required)
- `sha`: Accepts optional commit SHA. If specified, it will be used instead of ref (string, optional)

- **get_latest_release** - Get latest release
- `owner`: Repository owner (string, required)
- `repo`: Repository name (string, required)

- **get_latest_release** - Get latest release
- `owner`: Repository owner (string, required)
Expand Down Expand Up @@ -1038,6 +1042,12 @@ Possible options:
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
- `repo`: Repository name (string, required)
- `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)

- **list_releases** - List releases
- `owner`: Repository owner (string, required)
- `page`: Page number for pagination (min 1) (number, optional)
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
- `repo`: Repository name (string, required)

- **list_releases** - List releases
- `owner`: Repository owner (string, required)
Expand Down