Merged
Conversation
…imizing SQL queries
…chData function to support POST requests
…r additional clear tools
…ionality in various tools
Member
Author
…ndling in related functions
…for limiting and slimming payloads
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 primarily focuses on code style consistency, build improvements, and dependency updates. The most notable changes include enforcing single quotes across the codebase, updating build scripts to support a new server entry point, and adding new dependencies. Additionally, there are minor workflow and configuration tweaks.
Code Style Consistency:
Switched all double quotes to single quotes in JavaScript/TypeScript source files, build scripts, and configuration files to enforce a consistent code style. (.js/.ts files,
build.js,.eslintrc,postcss.config.js,.prettierrc, etc.) [1] [2] [3] [4] [5] [6] [7] F154df1fL1, [8] [9]Updated
.prettierrcto use spaces instead of tabs and removed therequireConfigoption for further formatting consistency.Build System Enhancements:
Modified
build.jsto add a new build target forsrc/mcp-server/index.ts, outputting an ESM script with a Node.js shebang and import compatibility.Updated workflow YAML files to use single quotes for strings and made minor formatting adjustments. [1] [2] [3]
Dependency Updates:
@modelcontextprotocol/sdkandzodto dependencies, and@types/expressto devDependencies inpackage.json.Electron/IPC Improvements:
get-mcp-server-path) insrc/main/ipc.tsto resolve the path to the MCP server script, handling both packaged and development environments.Configuration Cleanup:
prettierkey frompackage.jsonand simplified theformatscript. [1] [2]These changes collectively improve code maintainability, streamline the build process, and prepare the codebase for new features.