### Install Dolphin-MCP Python Library Source: https://github.com/punkpeye/awesome-mcp-clients/blob/main/README.md This command installs the Dolphin-MCP Python library using pip, the standard package installer for Python. Dolphin-MCP is an open-source multi-server bridging client for MCP, enabling flexible tool usage and resource access with LLMs. ```bash pip install dolphin-mcp ``` -------------------------------- ### Install MCPOmni Connect CLI Source: https://github.com/punkpeye/awesome-mcp-clients/blob/main/README.md Instructions to install the MCPOmni Connect universal CLI client using `uv` or `pip` package managers. This client provides seamless integration with multiple protocols, AI models, and tools through an intelligent interface. ```Shell uv add mcpomni-connect ``` ```Shell pip install mcpomni-connect ``` -------------------------------- ### Push Git Branch to Remote Repository Source: https://github.com/punkpeye/awesome-mcp-clients/blob/main/CONTRIBUTING.md This command uploads the local `add-new-client` branch and its commits to the `origin` remote repository, which typically refers to your forked GitHub repository. This makes your changes available online and ready for a pull request. ```bash git push origin add-new-client ``` -------------------------------- ### Create New Git Branch Source: https://github.com/punkpeye/awesome-mcp-clients/blob/main/CONTRIBUTING.md This command creates a new Git branch named `add-new-client` and immediately switches to it. This practice helps isolate changes for a specific feature or fix, preventing direct modifications to the main project branch. ```bash git checkout -b add-new-client ``` -------------------------------- ### Commit Git Changes with Message Source: https://github.com/punkpeye/awesome-mcp-clients/blob/main/CONTRIBUTING.md This command records the staged changes to the local Git repository. The `-m` flag allows for a concise, descriptive commit message, such as "Add new XYZ client", which explains the purpose of the changes. ```bash git commit -m "Add new XYZ client" ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.