-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Add initial support for MCP Apps for select tools under Insiders #1957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
mattdholloway
wants to merge
39
commits into
main
Choose a base branch
from
mcp-ui-apps-3
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
67a4793
PoC full flow (hello world example)
tommaso-moro 7d2b463
add avatar resource domain
tommaso-moro 7606aec
add postmessage logic and richer UI
tommaso-moro 02ce9bf
add create issue ui
tommaso-moro d53ff41
update ui for issue creatioon
tommaso-moro e3d5db7
fix
tommaso-moro b149642
ignore banner
tommaso-moro 92aabf2
update docs after rebase
mattdholloway 8b55d08
update toolsnap for get_me
mattdholloway 06270c7
new UI changes
mattdholloway a770719
update docs
mattdholloway 23de0bc
update workflows that need ui build
mattdholloway e2a8582
add UI diff
mattdholloway 5bb6228
fix build ui step for windows runners to use git bash
mattdholloway 157ba4d
fix UI diff
mattdholloway c927390
refactor issue creation UI
mattdholloway 6d0eda6
add AvatarWithFallback component and update UserCard to use it; enhan…
mattdholloway 2b0d8cc
fix formatting of button labels
mattdholloway b8dc0d5
add create pull request functionality with UI support and insiders
mattdholloway 2d186da
update docs
mattdholloway 072f5c4
add test for insiders mode handling in ServerTool schema
mattdholloway adc1053
remove `show_ui` param for now
mattdholloway ee0a440
make insiders mode metadata stripping generic
mattdholloway 2b8f062
remove ui diff
mattdholloway 6070471
Merge branch 'main' into mcp-ui-apps-3
mattdholloway d0f0334
Merge branch 'mcp-ui-apps-3' of https://github.com/github/github-mcp-…
mattdholloway 37da563
fix CI
mattdholloway 8b23e49
remove redundant mention of old app name
mattdholloway 12af958
add node types to fix ide issues for ts code
mattdholloway e61c2d2
remove unused TriangleDownIcon import
mattdholloway 54ce61d
update @primer/behaviors and electron-to-chromium versions in package…
mattdholloway 03aad7f
add check to ensure base and head are not the same when creating a ne…
mattdholloway ad09947
remove old show_ui
mattdholloway d5e263e
fix gitignore for dist so builds dont break
mattdholloway dca4d52
add tests for insiders mode handling and metadata stripping in Server…
mattdholloway 932750c
remove unused state and components from CreatePRApp
mattdholloway 16469f8
fix ui build
mattdholloway d0085a7
update docker build to fix npm issue
mattdholloway 7ce5e08
remove reference to show_ui
mattdholloway File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint": true, | ||
| "title": "List assignable users" | ||
| }, | ||
| "description": "List available assignees for a repository. Returns users who can be assigned to issues.", | ||
| "inputSchema": { | ||
| "properties": { | ||
| "owner": { | ||
| "description": "Repository owner", | ||
| "type": "string" | ||
| }, | ||
| "repo": { | ||
| "description": "Repository name", | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "owner", | ||
| "repo" | ||
| ], | ||
| "type": "object" | ||
| }, | ||
| "name": "list_assignees" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| { | ||
| "annotations": { | ||
| "readOnlyHint": true, | ||
| "title": "List milestones" | ||
| }, | ||
| "description": "List milestones for a repository.", | ||
| "inputSchema": { | ||
| "properties": { | ||
| "owner": { | ||
| "description": "Repository owner", | ||
| "type": "string" | ||
| }, | ||
| "repo": { | ||
| "description": "Repository name", | ||
| "type": "string" | ||
| }, | ||
| "state": { | ||
| "description": "Filter by state (open, closed, all). Default: open", | ||
| "enum": [ | ||
| "open", | ||
| "closed", | ||
| "all" | ||
| ], | ||
| "type": "string" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "owner", | ||
| "repo" | ||
| ], | ||
| "type": "object" | ||
| }, | ||
| "name": "list_milestones" | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.