Skip to content

Commit fa46fa8

Browse files
committed
update docs
1 parent a995913 commit fa46fa8

2 files changed

Lines changed: 4 additions & 50 deletions

File tree

docs/feature-flags.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ runtime behavior (such as output formatting) won't appear here.
5858
- `assignees`: Usernames to assign to this issue (string[], optional)
5959
- `body`: Issue body content (string, optional)
6060
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
61+
- `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)
6162
- `issue_number`: Issue number to update (number, optional)
6263
- `labels`: Labels to apply to this issue (string[], optional)
6364
- `method`: Write operation to perform on a single issue.
@@ -68,7 +69,7 @@ runtime behavior (such as output formatting) won't appear here.
6869
- `milestone`: Milestone number (number, optional)
6970
- `owner`: Repository owner (string, required)
7071
- `repo`: Repository name (string, required)
71-
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — visible when remote_mcp_ui_apps is enabled unless the client explicitly indicates it does not support io.modelcontextprotocol/ui)
72+
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, issue_fields, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — visible when remote_mcp_ui_apps is enabled unless the client explicitly indicates it does not support io.modelcontextprotocol/ui)
7273
- `state`: New state (string, optional)
7374
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
7475
- `title`: Issue title (string, optional)
@@ -95,30 +96,6 @@ runtime behavior (such as output formatting) won't appear here.
9596
- `state`: New state (string, optional)
9697
- `title`: New title (string, optional)
9798

98-
### `remote_mcp_issue_fields`
99-
100-
- **issue_write** - Create or update issue/pull request
101-
- **Required OAuth Scopes**: `repo`
102-
- `assignees`: Usernames to assign to this issue (string[], optional)
103-
- `body`: Issue body content (string, optional)
104-
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
105-
- `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)
106-
- `issue_number`: Issue number to update (number, optional)
107-
- `labels`: Labels to apply to this issue (string[], optional)
108-
- `method`: Write operation to perform on a single issue.
109-
Options are:
110-
- 'create' - creates a new issue.
111-
- 'update' - updates an existing issue.
112-
(string, required)
113-
- `milestone`: Milestone number (number, optional)
114-
- `owner`: Repository owner (string, required)
115-
- `repo`: Repository name (string, required)
116-
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, issue_fields, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — only visible to clients that advertise MCP App UI support)
117-
- `state`: New state (string, optional)
118-
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
119-
- `title`: Issue title (string, optional)
120-
- `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)
121-
12299
### `issues_granular`
123100

124101
- **add_sub_issue** - Add Sub-Issue

docs/insiders-features.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ The list below is generated from the Go source. It covers tool **inventory and s
5252
- `assignees`: Usernames to assign to this issue (string[], optional)
5353
- `body`: Issue body content (string, optional)
5454
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
55+
- `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)
5556
- `issue_number`: Issue number to update (number, optional)
5657
- `labels`: Labels to apply to this issue (string[], optional)
5758
- `method`: Write operation to perform on a single issue.
@@ -62,7 +63,7 @@ The list below is generated from the Go source. It covers tool **inventory and s
6263
- `milestone`: Milestone number (number, optional)
6364
- `owner`: Repository owner (string, required)
6465
- `repo`: Repository name (string, required)
65-
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — visible when remote_mcp_ui_apps is enabled unless the client explicitly indicates it does not support io.modelcontextprotocol/ui)
66+
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, issue_fields, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — visible when remote_mcp_ui_apps is enabled unless the client explicitly indicates it does not support io.modelcontextprotocol/ui)
6667
- `state`: New state (string, optional)
6768
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
6869
- `title`: Issue title (string, optional)
@@ -89,30 +90,6 @@ The list below is generated from the Go source. It covers tool **inventory and s
8990
- `state`: New state (string, optional)
9091
- `title`: New title (string, optional)
9192

92-
### `remote_mcp_issue_fields`
93-
94-
- **issue_write** - Create or update issue/pull request
95-
- **Required OAuth Scopes**: `repo`
96-
- `assignees`: Usernames to assign to this issue (string[], optional)
97-
- `body`: Issue body content (string, optional)
98-
- `duplicate_of`: Issue number that this issue is a duplicate of. Only used when state_reason is 'duplicate'. (number, optional)
99-
- `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)
100-
- `issue_number`: Issue number to update (number, optional)
101-
- `labels`: Labels to apply to this issue (string[], optional)
102-
- `method`: Write operation to perform on a single issue.
103-
Options are:
104-
- 'create' - creates a new issue.
105-
- 'update' - updates an existing issue.
106-
(string, required)
107-
- `milestone`: Milestone number (number, optional)
108-
- `owner`: Repository owner (string, required)
109-
- `repo`: Repository name (string, required)
110-
- `show_ui`: Whether to render the MCP App form instead of executing the request immediately. Defaults to true. Set to false to skip the form and execute directly — useful when you have all required values (especially ones the form does not collect, like labels, assignees, milestone, type, issue_fields, or state changes) and the user has already confirmed the action. (boolean, optional, conditional — only visible to clients that advertise MCP App UI support)
111-
- `state`: New state (string, optional)
112-
- `state_reason`: Reason for the state change. Ignored unless state is changed. (string, optional)
113-
- `title`: Issue title (string, optional)
114-
- `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)
115-
11693
### `file_blame`
11794

11895
- **get_file_blame** - Get file blame information

0 commit comments

Comments
 (0)