A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/kanad13/MCP-Server-for-Hashing below:

kanad13/MCP-Server-for-Hashing: A Model Context Protocol (MCP) server for calculating MD5 and SHA-256 hashes, complete with tools and guides for understanding and building MCP servers. Works with Claude Desktop & VSCode.

MCP Server for cryptographic hashing

A Model Context Protocol (MCP) server for MD5 and SHA-256 hashing. This server enables LLMs to process cryptographic requests efficiently.

The server offers 2 tools:

The server is designed to be used with MCP clients like VS Code Copilot Chat, Claude for Desktop, and other LLM interfaces that support the Model Context Protocol.

Understand MCP and Build Your Own MCP Server

If you are new to the concept of Model Context Protocol (MCP), then you can use these resources:

The gif below shows how the MCP server processes requests and returns the corresponding cryptographic hashes. I have used Claude Desktop as an example, but it works equally well with other MCP clients like VSCode.

Option 1: Running the Server with Docker (Recommended)

This is the simplest way to run the server without managing Python environments directly.

1. Get the Docker Image:

2. Configure Your MCP Client:

Configure your client to use docker run.

3. Test the Integration:

Once configured, interact with your MCP client (VS Code Chat, Claude Desktop, etc.). Ask questions designed to trigger the hashing tools:

The client should start the Docker container in the background using the command you provided, send the request, receive the hash result, and display it.

Option 2: Running the Server Directly (Python Environment)

Use this method if you prefer not to use Docker or for development purposes.

1. Set Up Environment & Install:

# Create a dedicated directory and navigate into it
mkdir my_mcp_setup && cd my_mcp_setup

# --- Create & Activate Virtual Environment (Choose ONE method) ---
# Method A: Using uv (Recommended):
uv venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows

# Method B: Using standard venv:
# python -m venv .venv
# source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows
# ---

# --- Install the package (within the active venv, choose ONE method) ---
# Method A: Using uv:
uv pip install hashing-mcp-server

# Method B: Using pip:
# pip install hashing-mcp-server
# ---

2. Find the Executable Path:

With the virtual environment active, find the full, absolute path to the installed script:

# On Linux/macOS:
which hashing-mcp-server
# Example Output: /home/user/my_mcp_setup/.venv/bin/hashing-mcp-server

# On Windows (Command Prompt/PowerShell):
where hashing-mcp-server
# Example Output: C:\Users\User\my_mcp_setup\.venv\Scripts\hashing-mcp-server.exe

Copy the full path displayed in the output.

3. Configure Your MCP Client:

Use the absolute path you copied in the client configuration.

4. Test the Integration:

Once configured, interact with your MCP client (VS Code Chat, Claude Desktop, etc.). Ask questions designed to trigger the hashing tools: - "Use the calculate_md5 tool on 'hello world'." - "Compute the SHA256 hash for the text 'MCP rocks'."

The client should start the server script using the absolute path you provided, send the request, receive the hash result, and display it.

Contributing / Development Setup

Follow these steps if you want to modify the server code or contribute.

1. Clone the Repository:

git clone https://github.com/kanad13/MCP-Server-for-Hashing.git
cd MCP-Server-for-Hashing

2. Set Up Development Environment:

# Create & Activate Virtual Environment (using uv recommended)
uv venv
source .venv/bin/activate # Linux/macOS
# .venv\Scripts\activate # Windows

# Install in editable mode with development dependencies
uv pip install -e ".[dev]"

(This installs the package such that code changes in src/ take effect immediately without reinstalling. It also installs tools defined in [project.optional-dependencies.dev] like pytest)

3. Running Locally During Development: Ensure your development virtual environment is active. You can run the server using:

# Run the installed script (available due to -e flag)
hashing-mcp-server

Or execute the module directly:

python -m hashing_mcp.cli

(You might temporarily configure your MCP client to point to the executable path within this specific development .venv for integrated testing)

4. Running Tests: Ensure your development virtual environment is active:

Maintainer Tasks: Releasing a New Version

(For project maintainers)

The release process (building, testing, tagging, pushing to PyPI and Docker Hub) is automated by the build_and_push.sh script located in the repository root.

Prerequisites for Running the Script:

Release Steps:

  1. Ensure the version field in pyproject.toml is updated to the correct new version number.
  2. Commit and push any final code changes to the main branch.
  3. Make the release script executable (one-time setup): chmod +x build_and_push.sh
  4. Activate the virtual environment: source .venv/bin/activate (or equivalent).
  5. Run the script from the repository root: ./build_and_push.sh
  6. The script will perform all steps: build, check, upload to PyPI, build Docker image, tag Docker image (version and latest), push Docker images, create Git tag, push Git tag.
  7. Verify the new package version is live on PyPI and the new Docker tags are available on Docker Hub.

This project is licensed under the MIT License - see the LICENSE file for details.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4