HT MCP Server
Enables AI assistants to programmatically control interactive terminal applications through HT sessions, supporting session management, key sending, snapshots, and command execution.
README
HT MCP Server
A Model Context Protocol (MCP) server for interacting with HT (headless terminal) sessions. This allows AI assistants to programmatically control and interact with terminal applications through the HT interface.
What is HT?
HT is a project by Andy Konwinski and is the real magic behind this project. It wraps any binary with a VT100 style terminal interface and allows programmatic access via JSON commands. This MCP server provides a clean interface for AI assistants to create HT sessions, send commands, and capture terminal output.
Prerequisites
- HT (headless terminal) installed and available in PATH
- Node.js 18+
- TypeScript
Installation
# Clone and setup
git clone <this-repo>
cd ht-mcp-server
# Install dependencies
npm install
# Build the project
npm run build
Usage
Running the MCP Server
# Start the MCP server
npm start
# Or run in development mode
npm run dev
Available Tools
The server provides the following MCP tools:
ht_create_session
Create a new HT session.
- Arguments:
command(optional): Array of command arguments (default:["bash"])
- Returns: Session ID for use with other tools
ht_send_keys
Send keys to an HT session.
- Arguments:
sessionId: HT session IDkeys: Array of keys/text to send (supports special keys like "Enter", "Down", "^c", etc.)
ht_take_snapshot
Take a snapshot of the current terminal state.
- Arguments:
sessionId: HT session ID
- Returns: Current terminal content as text
ht_execute_command
Execute a command and return the output (convenience method).
- Arguments:
sessionId: HT session IDcommand: Command to execute
- Returns: Terminal output after command execution
ht_list_sessions
List all active HT sessions.
- Returns: List of active sessions with metadata
ht_close_session
Close an HT session and clean up resources.
- Arguments:
sessionId: HT session ID to close
Example Workflow
Here's how an AI assistant might use these tools to automate npm create vite:
// 1. Create a new HT session
const session = await ht_create_session({});
// 2. Navigate to a working directory
await ht_execute_command({
sessionId: session.sessionId,
command: "cd /tmp && mkdir vite-test && cd vite-test"
});
// 3. Start npm create vite
await ht_send_keys({
sessionId: session.sessionId,
keys: ["npm create vite@latest my-app"]
});
await ht_send_keys({
sessionId: session.sessionId,
keys: ["Enter"]
});
// 4. Wait and check what prompts appeared
const snapshot = await ht_take_snapshot({
sessionId: session.sessionId
});
// 5. Respond to prompts based on snapshot content
if (snapshot.snapshot.includes("framework")) {
await ht_send_keys({
sessionId: session.sessionId,
keys: ["Enter"] // Select default framework
});
}
// 6. Continue responding to prompts...
await ht_send_keys({
sessionId: session.sessionId,
keys: ["Down"] // Navigate to TypeScript variant
});
await ht_send_keys({
sessionId: session.sessionId,
keys: ["Enter"] // Select TypeScript
});
// 7. Verify the project was created
const result = await ht_execute_command({
sessionId: session.sessionId,
command: "ls -la"
});
// 8. Clean up
await ht_close_session({
sessionId: session.sessionId
});
Key Features
- Session Management: Create and manage multiple HT sessions
- Interactive Commands: Handle interactive CLI tools like
npm create,git, etc. - Terminal Snapshots: Capture terminal state to understand what's happening
- Special Key Support: Send arrow keys, Ctrl combinations, Enter, etc.
- Error Handling: Robust error handling and session cleanup
Integration with AI Assistants
This MCP server enables AI assistants to:
- Automate complex interactive CLI workflows
- Debug terminal applications by taking snapshots
- Handle multi-step processes that require user input
- Work with any CLI tool that has interactive prompts
Development
# Build
npm run build
# Development mode with hot reload
npm run dev
# Lint
npm run lint
# Clean build artifacts
npm run clean
Troubleshooting
- HT not found: Make sure HT is installed and in your PATH
- Session timeouts: Increase timeout values for slow commands
- Non-JSON output: The service filters out non-JSON lines automatically
- Process cleanup: Sessions are automatically cleaned up on server shutdown
License
ISC
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.