Skip to content

Commit 7fb61e6

Browse files
committed
Update docs
1 parent af5dcf4 commit 7fb61e6

3 files changed

Lines changed: 8 additions & 82 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -859,6 +859,7 @@ The following sets of tools are available:
859859
- `assignees`: Usernames to assign to this issue (string[], optional)
860860
- `body`: Issue body content (string, optional)
861861
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
862+
- `issue_fields`: Issue field values to set or clear. Each item requires 'field_name' and exactly one of 'value', 'field_option_name', or 'delete: true'. (object[], optional)
862863
- `issue_number`: Issue number to update (number, optional)
863864
- `labels`: Labels to apply to this issue (string[], optional)
864865
- `method`: Write operation to perform on a single issue.
@@ -874,6 +875,12 @@ The following sets of tools are available:
874875
- `title`: Issue title (string, optional)
875876
- `type`: Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. (string, optional)
876877

878+
- **list_issue_fields** - List issue fields
879+
- **Required OAuth Scopes**: `repo`, `read:org`
880+
- **Accepted OAuth Scopes**: `admin:org`, `read:org`, `repo`, `write:org`
881+
- `owner`: The account owner of the repository or organization. The name is not case sensitive. (string, required)
882+
- `repo`: The name of the repository. When provided, returns fields for this specific repository (inherited from its organization). When omitted, returns org-level fields directly. (string, optional)
883+
877884
- **list_issue_types** - List available issue types
878885
- **Required OAuth Scopes**: `read:org`
879886
- **Accepted OAuth Scopes**: `admin:org`, `read:org`, `write:org`
@@ -883,6 +890,7 @@ The following sets of tools are available:
883890
- **Required OAuth Scopes**: `repo`
884891
- `after`: Cursor for pagination. Use the cursor from the previous response. (string, optional)
885892
- `direction`: Order direction. If provided, the 'orderBy' also needs to be provided. (string, optional)
893+
- `field_filters`: Filter by custom issue field values. Each entry takes a field_name and a value; the server looks up the field and coerces the value to its type (single-select option name, text, number, or YYYY-MM-DD date). (object[], optional)
886894
- `labels`: Filter by labels (string[], optional)
887895
- `orderBy`: Order issues by field. If provided, the 'direction' also needs to be provided. (string, optional)
888896
- `owner`: Repository owner (string, required)

docs/feature-flags.md

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -56,28 +56,6 @@ runtime behavior (such as output formatting) won't appear here.
5656
- `assignees`: Usernames to assign to this issue (string[], optional)
5757
- `body`: Issue body content (string, optional)
5858
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
59-
- `issue_number`: Issue number to update (number, optional)
60-
- `labels`: Labels to apply to this issue (string[], optional)
61-
- `method`: Write operation to perform on a single issue.
62-
Options are:
63-
- 'create' - creates a new issue.
64-
- 'update' - updates an existing issue.
65-
(string, required)
66-
- `milestone`: Milestone number (number, optional)
67-
- `owner`: Repository owner (string, required)
68-
- `repo`: Repository name (string, required)
69-
- `state`: New state (string, optional)
70-
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
71-
- `title`: Issue title (string, optional)
72-
- `type`: Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. (string, optional)
73-
74-
### `remote_mcp_issue_fields`
75-
76-
- **issue_write** - Create or update issue/pull request
77-
- **Required OAuth Scopes**: `repo`
78-
- `assignees`: Usernames to assign to this issue (string[], optional)
79-
- `body`: Issue body content (string, optional)
80-
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
8159
- `issue_fields`: Issue field values to set or clear. Each item requires 'field_name' and exactly one of 'value', 'field_option_name', or 'delete: true'. (object[], optional)
8260
- `issue_number`: Issue number to update (number, optional)
8361
- `labels`: Labels to apply to this issue (string[], optional)
@@ -94,25 +72,6 @@ runtime behavior (such as output formatting) won't appear here.
9472
- `title`: Issue title (string, optional)
9573
- `type`: Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. (string, optional)
9674

97-
- **list_issue_fields** - List issue fields
98-
- **Required OAuth Scopes**: `repo`, `read:org`
99-
- **Accepted OAuth Scopes**: `admin:org`, `read:org`, `repo`, `write:org`
100-
- `owner`: The account owner of the repository or organization. The name is not case sensitive. (string, required)
101-
- `repo`: The name of the repository. When provided, returns fields for this specific repository (inherited from its organization). When omitted, returns org-level fields directly. (string, optional)
102-
103-
- **list_issues** - List issues
104-
- **Required OAuth Scopes**: `repo`
105-
- `after`: Cursor for pagination. Use the cursor from the previous response. (string, optional)
106-
- `direction`: Order direction. If provided, the 'orderBy' also needs to be provided. (string, optional)
107-
- `field_filters`: Filter by custom issue field values. Each entry takes a field_name and a value; the server looks up the field and coerces the value to its type (single-select option name, text, number, or YYYY-MM-DD date). (object[], optional)
108-
- `labels`: Filter by labels (string[], optional)
109-
- `orderBy`: Order issues by field. If provided, the 'direction' also needs to be provided. (string, optional)
110-
- `owner`: Repository owner (string, required)
111-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
112-
- `repo`: Repository name (string, required)
113-
- `since`: Filter by date (ISO 8601 timestamp) (string, optional)
114-
- `state`: Filter by state, by default both open and closed issues are returned when not provided (string, optional)
115-
11675
### `issues_granular`
11776

11877
- **add_sub_issue** - Add Sub-Issue

docs/insiders-features.md

Lines changed: 0 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -50,28 +50,6 @@ The list below is generated from the Go source. It covers tool **inventory and s
5050
- `assignees`: Usernames to assign to this issue (string[], optional)
5151
- `body`: Issue body content (string, optional)
5252
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
53-
- `issue_number`: Issue number to update (number, optional)
54-
- `labels`: Labels to apply to this issue (string[], optional)
55-
- `method`: Write operation to perform on a single issue.
56-
Options are:
57-
- 'create' - creates a new issue.
58-
- 'update' - updates an existing issue.
59-
(string, required)
60-
- `milestone`: Milestone number (number, optional)
61-
- `owner`: Repository owner (string, required)
62-
- `repo`: Repository name (string, required)
63-
- `state`: New state (string, optional)
64-
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
65-
- `title`: Issue title (string, optional)
66-
- `type`: Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. (string, optional)
67-
68-
### `remote_mcp_issue_fields`
69-
70-
- **issue_write** - Create or update issue/pull request
71-
- **Required OAuth Scopes**: `repo`
72-
- `assignees`: Usernames to assign to this issue (string[], optional)
73-
- `body`: Issue body content (string, optional)
74-
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
7553
- `issue_fields`: Issue field values to set or clear. Each item requires 'field_name' and exactly one of 'value', 'field_option_name', or 'delete: true'. (object[], optional)
7654
- `issue_number`: Issue number to update (number, optional)
7755
- `labels`: Labels to apply to this issue (string[], optional)
@@ -88,25 +66,6 @@ The list below is generated from the Go source. It covers tool **inventory and s
8866
- `title`: Issue title (string, optional)
8967
- `type`: Type of this issue. Only use if the repository has issue types configured. Use list_issue_types tool to get valid type values for the organization. If the repository doesn't support issue types, omit this parameter. (string, optional)
9068

91-
- **list_issue_fields** - List issue fields
92-
- **Required OAuth Scopes**: `repo`, `read:org`
93-
- **Accepted OAuth Scopes**: `admin:org`, `read:org`, `repo`, `write:org`
94-
- `owner`: The account owner of the repository or organization. The name is not case sensitive. (string, required)
95-
- `repo`: The name of the repository. When provided, returns fields for this specific repository (inherited from its organization). When omitted, returns org-level fields directly. (string, optional)
96-
97-
- **list_issues** - List issues
98-
- **Required OAuth Scopes**: `repo`
99-
- `after`: Cursor for pagination. Use the cursor from the previous response. (string, optional)
100-
- `direction`: Order direction. If provided, the 'orderBy' also needs to be provided. (string, optional)
101-
- `field_filters`: Filter by custom issue field values. Each entry takes a field_name and a value; the server looks up the field and coerces the value to its type (single-select option name, text, number, or YYYY-MM-DD date). (object[], optional)
102-
- `labels`: Filter by labels (string[], optional)
103-
- `orderBy`: Order issues by field. If provided, the 'direction' also needs to be provided. (string, optional)
104-
- `owner`: Repository owner (string, required)
105-
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
106-
- `repo`: Repository name (string, required)
107-
- `since`: Filter by date (ISO 8601 timestamp) (string, optional)
108-
- `state`: Filter by state, by default both open and closed issues are returned when not provided (string, optional)
109-
11069
### `file_blame`
11170

11271
- **get_file_blame** - Get file blame information

0 commit comments

Comments
 (0)