Skip to content

Commit 742dfe3

Browse files
Fix conflict and regenerate docs after rebase
1 parent eb57a9d commit 742dfe3

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ The following sets of tools are available:
628628

629629
- **get_team_members** - Get team members
630630
- **Required OAuth Scopes**: `read:org`
631-
- **Accepted OAuth Scopes**: `write:org`, `read:org`, `admin:org`
631+
- **Accepted OAuth Scopes**: `read:org`, `admin:org`, `write:org`
632632
- `org`: Organization login (owner) that contains the team. (string, required)
633633
- `team_slug`: Team slug (string, required)
634634

@@ -652,7 +652,7 @@ The following sets of tools are available:
652652

653653
- **list_dependabot_alerts** - List dependabot alerts
654654
- **Required OAuth Scopes**: `security_events`
655-
- **Accepted OAuth Scopes**: `security_events`, `repo`
655+
- **Accepted OAuth Scopes**: `repo`, `security_events`
656656
- `owner`: The owner of the repository. (string, required)
657657
- `repo`: The name of the repository. (string, required)
658658
- `severity`: Filter dependabot alerts by severity (string, optional)
@@ -961,7 +961,7 @@ The following sets of tools are available:
961961

962962
- **get_project_item** - Get project item
963963
- **Required OAuth Scopes**: `read:project`
964-
- **Accepted OAuth Scopes**: `project`, `read:project`
964+
- **Accepted OAuth Scopes**: `read:project`, `project`
965965
- `fields`: Specific list of field IDs to include in the response (e.g. ["102589", "985201", "169875"]). If not provided, only the title field is included. (string[], optional)
966966
- `item_id`: The item's ID. (number, required)
967967
- `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)
@@ -970,7 +970,7 @@ The following sets of tools are available:
970970

971971
- **list_project_fields** - List project fields
972972
- **Required OAuth Scopes**: `read:project`
973-
- **Accepted OAuth Scopes**: `read:project`, `project`
973+
- **Accepted OAuth Scopes**: `project`, `read:project`
974974
- `after`: Forward pagination cursor from previous pageInfo.nextCursor. (string, optional)
975975
- `before`: Backward pagination cursor from previous pageInfo.prevCursor (rare). (string, optional)
976976
- `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)
@@ -992,7 +992,7 @@ The following sets of tools are available:
992992

993993
- **list_projects** - List projects
994994
- **Required OAuth Scopes**: `read:project`
995-
- **Accepted OAuth Scopes**: `read:project`, `project`
995+
- **Accepted OAuth Scopes**: `project`, `read:project`
996996
- `after`: Forward pagination cursor from previous pageInfo.nextCursor. (string, optional)
997997
- `before`: Backward pagination cursor from previous pageInfo.prevCursor (rare). (string, optional)
998998
- `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)
@@ -1265,7 +1265,7 @@ The following sets of tools are available:
12651265

12661266
- **get_secret_scanning_alert** - Get secret scanning alert
12671267
- **Required OAuth Scopes**: `security_events`
1268-
- **Accepted OAuth Scopes**: `repo`, `security_events`
1268+
- **Accepted OAuth Scopes**: `security_events`, `repo`
12691269
- `alertNumber`: The number of the alert. (number, required)
12701270
- `owner`: The owner of the repository. (string, required)
12711271
- `repo`: The name of the repository. (string, required)
@@ -1307,7 +1307,7 @@ The following sets of tools are available:
13071307

13081308
- **list_org_repository_security_advisories** - List org repository security advisories
13091309
- **Required OAuth Scopes**: `security_events`
1310-
- **Accepted OAuth Scopes**: `security_events`, `repo`
1310+
- **Accepted OAuth Scopes**: `repo`, `security_events`
13111311
- `direction`: Sort direction. (string, optional)
13121312
- `org`: The organization login. (string, required)
13131313
- `sort`: Sort field. (string, optional)

pkg/github/repositories.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import (
1212
ghErrors "github.com/github/github-mcp-server/pkg/errors"
1313
"github.com/github/github-mcp-server/pkg/inventory"
1414
"github.com/github/github-mcp-server/pkg/octicons"
15-
"github.com/github/github-mcp-server/pkg/raw"
1615
"github.com/github/github-mcp-server/pkg/scopes"
1716
"github.com/github/github-mcp-server/pkg/translations"
1817
"github.com/github/github-mcp-server/pkg/utils"

0 commit comments

Comments
 (0)