Skip to content

Conversation

@ssbushi
Copy link
Contributor

@ssbushi ssbushi commented Jan 9, 2026

  • Add explicit runtime health check
  • Add optional file logging to MCP CLI command
  • Use non-interactive mode and specify project root for ProcessManager.
  • Tests for changes.

Checklist (if applicable):

@gemini-code-assist
Copy link
Contributor

Summary of Changes

Hello @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

  • Runtime Health Check: An explicit health check mechanism has been introduced to ensure the MCP server's runtime is properly spun up and registered, preventing failures during startup.
  • Optional File Logging: A new --debug option has been added to the MCP CLI command, allowing users to enable detailed file logging for easier debugging and troubleshooting.
  • Improved Process Management: The ProcessManager now operates in a non-interactive mode by default for managed processes and correctly specifies the project root, enhancing stability and predictability.
  • Enhanced Test Coverage: New unit tests have been added for the start command and the waitForRuntime utility, ensuring the reliability of the new features and fixes.

🧠 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 Assist

The 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 /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

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 .gemini/ folder in the base of the repository. Detailed instructions can be found here.

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

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a 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.

@ssbushi ssbushi marked this pull request as ready for review January 12, 2026 15:54
@ssbushi ssbushi requested a review from pavelgj January 12, 2026 15:54
@ssbushi
Copy link
Contributor Author

ssbushi commented Jan 12, 2026

/gemini review

Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a 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.

Comment on lines +121 to +151
await new Promise<void>((resolve, reject) => {
let timeoutId: NodeJS.Timeout;
let unsubscribe: () => void;

const cleanup = () => {
if (timeoutId) clearTimeout(timeoutId);
if (unsubscribe) unsubscribe();
};

timeoutId = setTimeout(() => {
cleanup();
reject(new Error('Timeout waiting for runtime to be ready'));
}, 30000);

unsubscribe = manager.onRuntimeEvent((event, runtime) => {
if (event === RuntimeEvent.ADD && runtime.id === runtimeId) {
cleanup();
resolve();
}
});

processPromise
.then(() => {
cleanup();
reject(new Error('Process exited before runtime was ready'));
})
.catch((err) => {
cleanup();
reject(err);
});
});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The current implementation of waitForRuntime correctly handles waiting for the runtime, timeouts, and process exits. However, the manual management of state with the cleanup function can be simplified and made more robust by using Promise.race and a try...finally block for cleanup. This approach is more declarative and less prone to race conditions in the cleanup logic, improving the code's readability and maintainability.

  const TIMEOUT_MS = 30000;
  let unsubscribe: () => void;
  let timeoutId: NodeJS.Timeout;

  try {
    const runtimeAddedPromise = new Promise<void>((resolve) => {
      unsubscribe = manager.onRuntimeEvent((event, runtime) => {
        if (event === RuntimeEvent.ADD && runtime.id === runtimeId) {
          resolve();
        }
      });
    });

    const timeoutPromise = new Promise<void>((_, reject) => {
      timeoutId = setTimeout(
        () => reject(new Error('Timeout waiting for runtime to be ready')),
        TIMEOUT_MS
      );
    });

    const processExitedPromise = processPromise.then(
      () => Promise.reject(new Error('Process exited before runtime was ready')),
      (err) => Promise.reject(err)
    );

    await Promise.race([
      runtimeAddedPromise,
      timeoutPromise,
      processExitedPromise,
    ]);
  } finally {
    if (unsubscribe) unsubscribe();
    if (timeoutId) clearTimeout(timeoutId);
  }

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
@ssbushi ssbushi requested a review from apascal07 January 12, 2026 18:40
get runtimeId() {
return `${process.pid}${this.port !== null ? `-${this.port}` : ''}`;
return (
process.env.GENKIT_RUNTIME_ID ??
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if this is correct... actually not sure if it was correct before.
the issue might come up in case of multiple genkit instances. If GENKIT_RUNTIME_ID is set, they all will have the same runtimeId, which is wrong.
I wonder if GENKIT_RUNTIME_ID can be used as prefix? So, the reflection API is allowed to append suffixes (like port number) to make ids unique, and then for your purposes you can check for prefix... WDYT?

Copy link
Contributor Author

@ssbushi ssbushi Jan 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is supposed to be an ID, why should we expect that all of them will get the same ID?

I get what you're saying and I feel like if we should either:

  • Rename this GENKIT_RUNTIME_ID_PREFIX or something, if this is going to be a common env var, or
  • Enforce that GENKIT_RUNTIME_ID is unique and does not already exists.

You're right, the previous logic was not correct.

@ssbushi ssbushi requested a review from pavelgj January 12, 2026 19:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

2 participants