-
Notifications
You must be signed in to change notification settings - Fork 637
fix(genkit-tools/mcp): Fix MCP server failing to spin up runtime #4082
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
base: main
Are you sure you want to change the base?
Conversation
Summary of ChangesHello @ssbushi, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical issue where the MCP server was failing to spin up its runtime reliably. The changes introduce a robust runtime health check, provide an optional file logging mechanism for better diagnostics, and refine the process management to ensure managed processes start correctly in a non-interactive environment with the appropriate project context. These improvements collectively aim to make the MCP server more stable and easier to debug. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
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.
Code Review
This pull request effectively resolves an issue where the MCP server could fail to properly start a runtime due to a race condition. The core of the fix is the new waitForRuntime function, which explicitly waits for the runtime process to initialize and register itself. This is a robust solution that significantly improves the reliability of the tool.
The supporting changes are also well-implemented. The modification to onRuntimeEvent to return an unsubscribe function is a crucial improvement for preventing resource leaks. The enhancements to ProcessManager for better handling of non-interactive processes and the addition of a --debug flag for file logging improve the tool's debuggability. Furthermore, the introduction of comprehensive unit tests for the new logic is commendable and ensures the changes are solid. Overall, this is a high-quality contribution that strengthens the stability and usability of the MCP server.
|
/gemini review |
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.
Code Review
This pull request addresses an issue where the MCP server fails to reliably spin up a runtime. The core of the fix is the introduction of an explicit waitForRuntime health check, which ensures the server waits for the runtime process to properly register before proceeding. The changes also include adding a file-based debug logging option, correctly setting the process to non-interactive mode, and providing the project root as the working directory. The addition of comprehensive tests for the new logic is a great touch. My review includes a couple of suggestions to enhance the robustness of the process cleanup logic and to refactor the new waitForRuntime function for better readability and maintainability.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
|
/gemini review |
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.
Code Review
This pull request introduces several improvements to fix the MCP server's runtime startup failures. Key changes include adding an explicit health check (waitForRuntime) when starting a dev process, enabling non-interactive mode for the process manager, and allowing file-based debugging for the MCP command. The changes are well-structured and include new tests for the added functionality.
I've found a potential race condition in the new waitForRuntime function that could lead to incorrect timeouts. I've also noted a pattern in the new tests that could lead to flakiness. My detailed comments provide suggestions for addressing these points.
Checklist (if applicable):