Add Perfecto MCP version info and GitHub update-check tools#37
Merged
Conversation
3dgiordano
approved these changes
Jul 17, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces a new
tools_managermodule to support version and update checks for the Perfecto MCP, integrates it into the main server, and adds comprehensive tests. The most important changes are:New Tools Manager Functionality:
tools/tools_manager.pyimplementing theToolsManagerclass and a new MCP tool, providingversionandcheck_updatesactions to report the current MCP version, runtime, and platform info, and to check for updates via the GitHub releases API. This includes robust error handling for network failures and user guidance for manual/automatic updates.Integration with Server:
tools_managerin the server by importing and invoking itsregisterfunction inserver.py, ensuring the new tool is available in the MCP toolset. [1] [2]Configuration Updates:
config/perfecto.pyto point to the newPerfectoCodeorganization, added theGITHUB_API_LATEST_RELEASEconstant for update checks, and updated the support message accordingly.Testing:
tests/test_tools_manager.pywith extensive tests for version reporting, platform normalization, asset matching, update checking (including when up-to-date, when an update is available, and various error conditions).