ht-mcp

Pure Rust implementation of MCP server for headless terminal

GitHub Stars

181

User Rating

Not Rated

Favorites

0

Views

28

Forks

7

Issues

15

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Installation

Prerequisites

Required software and versions:
Rust: 1.75 or higher

Installation Steps

🍺 Homebrew (Recommended)

bash
brew tap memextech/tap
brew install ht-mcp

📦 Pre-built Binaries

Download from releases:
bash

macOS Intel

curl -L https://github.com/memextech/ht-mcp/releases/latest/download/ht-mcp-x86_64-apple-darwin -o ht-mcp

macOS Apple Silicon

curl -L https://github.com/memextech/ht-mcp/releases/latest/download/ht-mcp-aarch64-apple-darwin -o ht-mcp

Linux

curl -L https://github.com/memextech/ht-mcp/releases/latest/download/ht-mcp-x86_64-unknown-linux-gnu -o ht-mcp

Windows (PowerShell)

curl.exe -L https://github.com/memextech/ht-mcp/releases/latest/download/ht-mcp-x86_64-pc-windows-msvc -o ht-mcp.exe

Make executable and install

chmod +x ht-mcp && sudo mv ht-mcp /usr/local/bin/

🦀 Cargo

bash

Install from crates.io

cargo install ht-mcp

Install latest from git

cargo install --git https://github.com/memextech/ht-mcp

🔧 Build from Source

bash
git clone https://github.com/memextech/ht-mcp.git
cd ht-mcp
git submodule update --init --recursive
cargo install --path .
See [INSTALLATION.md](docs/INSTALLATION.md) for detailed installation options.