@@ -89,26 +89,26 @@ export const DEVSERVER_WAIT_FOR_BUILD_TOOL: McpToolDeclaration<
8989 typeof devserverWaitForBuildToolInputSchema . shape ,
9090 typeof devserverWaitForBuildToolOutputSchema . shape
9191> = declareTool ( {
92- name : 'devserver_wait_for_build ' ,
92+ name : 'devserver/wait_for_build ' ,
9393 title : 'Wait for Devserver Build' ,
9494 description : `
9595<Purpose>
96- Waits for a dev server that was started with the "devserver_start " tool to complete its build, then reports the build logs from its most
96+ Waits for a dev server that was started with the "devserver/start " tool to complete its build, then reports the build logs from its most
9797recent build.
9898</Purpose>
9999<Use Cases>
100- * **Waiting for a build:** As long as a devserver is alive ("devserver_start " was called for this project and "devserver_stop" wasn't
100+ * **Waiting for a build:** As long as a devserver is alive ("devserver/start " was called for this project and "devserver_stop" wasn't
101101 called yet), then if you're making a file change and want to ensure it was successfully built, call this tool instead of any other build
102102 tool or command. When it retuns you'll get build logs back **and** you'll know the user's devserver is up-to-date with the latest changes.
103103</Use Cases>
104104<Operational Notes>
105- * This tool expects that a dev server was launched on the same project with the "devserver_start " tool, otherwise a "no_devserver_found"
105+ * This tool expects that a dev server was launched on the same project with the "devserver/start " tool, otherwise a "no_devserver_found"
106106 status will be returned.
107107* This tool will block until the build is complete or the timeout is reached. If you expect a long build process, consider increasing the
108- timeout. Timeouts on initial run (right after "devserver_start " calls) or after a big change are not necessarily indicative of an error.
108+ timeout. Timeouts on initial run (right after "devserver/start " calls) or after a big change are not necessarily indicative of an error.
109109* If you encountered a timeout and it might be reasonable, just call this tool again.
110110* If the dev server is not building, it will return quickly, with the logs from the last build.
111- * A 'no_devserver_found' status can indicate the underlying server was stopped for some reason. Try first to call the "devserver_start "
111+ * A 'no_devserver_found' status can indicate the underlying server was stopped for some reason. Try first to call the "devserver/start "
112112 tool again, before giving up.
113113</Operational Notes>
114114` ,
0 commit comments