ZIN MCP Client

The ZIN MCP Client acts as a friendly bridge that allows local AI models to communicate with various software tools and services. In simple terms, it takes an AI running on a personal computer (via Ollama) and gives it the ability to "reach out" and use external programs to perform real-world tasks. This means a user can have a private conversation with an AI that can actually look at files, run code, or check data, all without needing an internet connection or a subscription to a cloud-based service. For users who want more flexibility, the tool provides multiple ways to interact, including a sleek command-line interface and a lightweight web dashboard. It is designed to be a "plug-and-play" solution that supports connecting to several Model Context Protocol (MCP) servers at once. This multi-server support allows a single AI model to act as a versatile assistant, pulling in specialized capabilities from different sources to perform complex workflows like local code reviews or vulnerability scanning in a secure environment. On a more technical level, the client leverages the LangChain ReAct agent framework to intelligently orchestrate tool calls. It interprets user intent and determines which specific MCP tool to invoke, handling the STDIO communication between the local LLM and the server. It features a configuration system compatible with standard MCP formats, comprehensive logging for debugging, and seamless integration with Open Web UI. This makes it a robust utility for developers who need a fast, cross-platform, and private testing ground for building and refining their own AI-integrated systems.

Category: AI & LLM Tooling

Tags: langchain, local-llm, ollama, orchestration, react

Visit ZIN MCP Client

How to install and configure ZIN MCP Client

1. Installation Prerequisites: * Python 3.10+ * Ollama (for running local LLMs) * uv (Recommended for dependency management) Steps: 1. Download and Extract: Download the latest release from the GitHub releases page and unzip it. bash unzip zin-mcp-client-<version>.zip cd zin-mcp-client 2. Install uv: bash curl -LsSf https://astral.sh/uv/install.sh | sh 3. Install Dependencies: Using uv (Recommended): bash uv pip install -r requirements.txt Using pip: bash pip install -r requirements.txt 4. Ollama Setup: Run a model with tool-calling capabilities (e.g., Llama 3.1): bash ollama run llama3.1:8b ollama serve ---

2. Configuration The ZIN MCP Client uses a configuration file named mcp-config.json located in the root directory. It follows a structure similar to Claude Desktop's configuration. JSON Configuration Example: json { "mcpServers": { "jadx-mcp-server": { "command": "/path/to/uv", "args": [ "--directory", "/path/to/jadx-mcp-server/", "run", "jadx_mcp_server.py" ] }, "apktool-mcp-server": { "command": "/path/to/uv", "args": [ "--directory", "/path/to/apktool-mcp-server/", "run", "apktool_mcp_server.py" ] } } } Note: Replace /path/to/uv and /path/to/...-mcp-server/ with the actual absolute paths on your system. ---

3. Available Tools The ZIN MCP Client is a bridge that provides access to tools hosted on other MCP servers. It provides several ways to interface with those tools: Execution Commands: * Interactive CLI: uv run zin_mcp_client.py * Web UI: uv run web_client.py * Open Web UI Proxy: uv run mcp_proxy.py (Exposes a proxy at http://localhost:8000) CLI Options: * --server [name]: Specify which server from the config to use. * --model [name]: Specify the Ollama model (e.g., llama3.1:8b). * --config [path]: Provide a custom path to a configuration JSON file. * --debug: Enable verbose logging and raw traffic details. ---

4. Example Prompts While specific text prompts aren't listed, the documentation suggests using the client for the following tasks via connected MCP servers: * Vulnerability Research: "Perform code review to find vulnerabilities locally." * Reverse Engineering: Using the Ghidra, JADX, or APKTool MCP servers to analyze binary files or Android applications. * Tool Orchestration: Asking the agent to use specific tools from multiple connected servers simultaneously using the ReAct framework.

What you can do with ZIN MCP Client

Use Case 1: Private Mobile App Security Auditing Problem: Security researchers often need to analyze APK files for vulnerabilities or malicious code, but uploading proprietary or sensitive binaries to cloud-based LLMs (like Claude or GPT-4) poses a significant data privacy risk. Solution: ZIN MCP Client bridges local LLMs (via Ollama) with specialized security MCP servers like apktool-mcp-server and jadx-mcp-server. This creates a completely air-gapped or local environment where the AI can decompile, inspect, and explain code without the data ever leaving the machine. Example: A researcher runs uv run zin_mcp_client.py --server jadx-mcp-server. They then prompt the local Llama 3.1 model: "Decompile app.apk and find any hardcoded API keys or insecure network configurations." The client invokes the local JADX tools and provides a summarized security report.

Use Case 2: Air-Gapped Malware Analysis using Ghidra Problem: Malware analysts frequently work in isolated virtual machines without internet access to prevent malware from communicating with Command & Control (C2) servers. In these environments, cloud-based AI assistants are unavailable. Solution: Because ZIN MCP Client is lightweight and runs entirely locally, it can be deployed within an air-gapped VM. It can connect to the GhidraMCP server to allow a local LLM to interact with Ghidra's decompiler and symbol tables. Example: An analyst opens a suspicious binary in Ghidra and starts the ZIN MCP Client. They ask the LLM: "Analyze the function at address 0x401000 and explain its logic." The LLM uses the Ghidra toolset to retrieve the assembly, convert it to pseudo-code, and explain the malware's obfuscation technique to the analyst.

Use Case 3: Extending Open Web UI with Local Toolsets Problem: Users of "Open Web UI" (a popular local ChatGPT-like interface) often find it difficult to connect their local LLMs to external tools like file systems, web scrapers, or custom scripts because the setup is complex. Solution: ZIN MCP Client includes an mcp_proxy.py feature. This acts as a bridge that turns standard STDIO-based MCP servers into an API that Open Web UI can consume. This allows users to use a polished web interface while still leveraging powerful, local tool-calling capabilities. Example: A developer configures ZIN's MCP Proxy to run a filesystem MCP server. In their Open Web UI settings, they add the ZIN proxy as a connection. Now, they can chat with their local model and say, "Search my 'Projects' folder for all Python files that don't have docstrings," and the model…

Key facts

  • Open Source
  • AI & LLM Tooling, Developer Tools & Code Intelligence
  • langchain, local-llm, ollama, orchestration, react

Part of MCP Servers

Related MCP servers

  • MCP LaTeX Server — Create, edit, and manage LaTeX files. Requires an external LaTeX distribution like MiKTeX, TeX Live, or MacTeX.
  • MCP JSON — A collection of servers for file system operations, Google search, web automation, and executing terminal commands.
  • MCP Jupyter Complete — A server for Jupyter notebook manipulation with position-based operations and VS Code integration.
  • MCP LSP Go — An MCP server that connects AI assistants to Go's Language Server Protocol (LSP) for advanced code analysis.
  • MCP Memory Dashboard — A desktop application for managing and interacting with the MCP Memory Service, a semantic memory system built on the Model…
  • MCP Manager — A full-stack application for managing Model Context Protocol (MCP) servers for Claude Desktop with a modern web interface.
  • AI Tools
  • Categories
  • Industries
  • CLI Coding Agents
  • MCP Servers
  • MCP Categories