-
Notifications
You must be signed in to change notification settings - Fork 4
[dart_tooling_mcp_server] Add a hot reload tool #42
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
Conversation
PR HealthChangelog Entry ✔️
Changes to files need to be accounted for in their respective changelogs. |
description: 'Takes a screenshot of the active flutter application in its ' | ||
'current state. Requires "${connectTool.name}" to be successfully ' | ||
'called first.', | ||
inputSchema: ObjectSchema(), | ||
); | ||
|
||
@visibleForTesting | ||
static final hotReloadTool = Tool( | ||
name: 'hotReload', |
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.
Having spaces like "Hot Reload" showed up in the chat window as "Hot_Reload" (at least in cursor), so I changed these to use camel case for now as that looks better in the chat window
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.
Oh interesting ok
Adds a server tool to perform a hot reload against a Flutter app.