-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Rewrite the developer mcp using the rmcp sdk #4297
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
ec2355e
boilerplate
angelahning af8bc4f
list window tool
angelahning a34d1e7
screen capture
angelahning edd3ab5
migrate the text editor tool
angelahning 59b2c1d
add remaining tools
angelahning 3ba887f
add base instructions
angelahning 87dce59
add mcp command
angelahning c557a9b
add ai text editor
angelahning deb4fcc
port over the tests
angelahning e2b6942
add integration tests
angelahning 483709e
fmt
angelahning 4f55772
remove duplicate code
angelahning 3f5a565
extract text editor helpers
angelahning cf583f4
swap initialization
angelahning 4ce3e0c
support prompts
angelahning 6a1051c
disable og developer
angelahning 7823f10
support notification
angelahning 82de222
swap developer
angelahning c59fc16
remove old developer extension
angelahning 1dc5cb7
update tests
angelahning 62fa3cc
fix lint
angelahning 3de12e7
support ai editor models
angelahning d0bf4ee
add os specific instructions
angelahning 2269af8
update test
angelahning 3586182
remove comments
angelahning 8288c93
lint error
angelahning 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
|
|
@@ -13,7 +13,7 @@ workspace = true | |
| [dependencies] | ||
| mcp-core = { path = "../mcp-core" } | ||
| mcp-server = { path = "../mcp-server" } | ||
| rmcp = { workspace = true } | ||
| rmcp = { version = "0.6.0", features = ["server", "client", "transport-io", "macros"] } | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should be set at parent, not here |
||
| anyhow = "1.0.94" | ||
| tokio = { version = "1", features = ["full"] } | ||
| tokio-stream = { version = "0.1", features = ["io-util"] } | ||
|
|
@@ -25,6 +25,7 @@ base64 = "0.21" | |
| thiserror = "1.0" | ||
| serde = { version = "1.0", features = ["derive"] } | ||
| serde_json = "1.0" | ||
| schemars = "1.0" | ||
| lazy_static = "1.5" | ||
| shellexpand = "3.1.0" | ||
| indoc = "2.0.5" | ||
|
|
||
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
seems a lot uglier than before...