1. Conduid
  2. Developer Tools
  3. Terminal MCP
MCP server · Developer Tools

Terminal MCP

A Model Context Protocol (MCP) server written in Go that provides secure terminal command execution with configurable timeouts and platform-specific support.

Unclaimed MIT last commit a year ago devtools
49Fair

Scored 3 days ago · breakdown

About Terminal MCP

Terminal MCP is an MCP server published by iris-networks in the Developer Tools category: a Model Context Protocol (MCP) server written in Go that provides secure terminal command execution with configurable timeouts and platform-specific support. It has been installed 0 times through Conduid.

The repository has 9 stars and 2 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx terminal-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Terminal MCP

Powered by Claude · Grounded in docs

I know everything about Terminal MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.1.0v1.1.0 · 13 Jul 2025What's Changed This release includes automated binary builds for multiple platforms. Downloads Linux AMD64**: `mcp-terminal-server-linux-amd64.tar.gz` Linux ARM64**: `mcp-terminal-server-linux-arm64.tar.gz` macOS AMD64**:…
v1.0.0v1.0.0 · 12 Jul 2025What's Changed This release includes automated binary builds for multiple platforms. Downloads Linux AMD64**: `mcp-terminal-server-linux-amd64.tar.gz` Linux ARM64**: `mcp-terminal-server-linux-arm64.tar.gz` macOS AMD64**:…
1.0.0Terminal MCP for mac and linux · 12 Jul 2025⏺ Release Notes - MCP Terminal Server 🎉 New Features Build Automation: Added Makefile for streamlined build process CI/CD Workflows: GitHub Actions workflows for automated testing and deployment Enhanced Documentation: Updated README with…

README

MCP Terminal Server

🚀 A high-performance Model Context Protocol server for secure terminal execution

Terminator Terminal

Features

  • Cross-platform support: Works on macOS and Linux
  • Configurable timeouts: Set custom timeout values for command execution
  • Secure execution: Commands run in controlled environment with proper error handling
  • Platform-aware: Automatically detects and adapts to the host platform
  • Flexible shell support: Configurable shell for command execution
  • GUI application support: Automatic DISPLAY environment variable forwarding for X11 applications
  • Multiple transport modes:
    • STDIO mode for traditional MCP clients
    • 🌐 StreamableHTTP transport: Standards-compliant HTTP-based MCP transport for web integrations
  • Flexible session management: Use any session ID you want - no pre-registration required
  • 🎉 Persistent shell sessions: Maintain shell state between commands (working directory, environment variables, etc.)

Quick Start

# Build the server
make build

# Run in HTTP mode with StreamableHTTP transport
./mcp-terminal-server --http --port 8080

# Run in STDIO mode (default)
./mcp-terminal-server

🚀 Quick Testing

Test StreamableHTTP Transport

# Start server in HTTP mode
./mcp-terminal-server --http --port 8080

# Test MCP initialization
curl -X POST http://localhost:8080/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test-client", "version": "1.0.0"}}}'

# Test tools listing (use session ID from initialize response)
curl -X POST http://localhost:8080/mcp \
  -H "Content-Type: application/json" \
  -H "Mcp-Session-Id: <session-id>" \
  -d '{"jsonrpc": "2.0", "id": 2, "method": "tools/list"}'

# Execute a command
curl -X POST http://localhost:8080/mcp \
  -H "Content-Type: application/json" \
  -H "Mcp-Session-Id: <session-id>" \
  -d '{"jsonrpc": "2.0", "id": 3, "method": "tools/call", "params": {"name": "execute_command", "arguments": {"command": "echo Hello StreamableHTTP!"}}}'

Test Persistent Shell

# Test persistent shell functionality
chmod +x examples/persistent_shell_examples.sh
./examples/persistent_shell_examples.sh

Documentation

📚 Complete Documentation

Available Tools

  1. execute_command - Execute single commands with timeout
  2. persistent_shell - Execute commands in persistent shell sessions
  3. session_manager - Manage shell sessions (list, close)

Environment Variables

The server supports the following environment variables:

  • MCP_COMMAND_TIMEOUT - Default command timeout in seconds (default: 30)
  • MCP_SHELL - Custom shell to use for command execution (default: /bin/bash on Unix)
  • DISPLAY - X11 display for GUI applications (automatically forwarded to commands)

GUI Application Support

The server automatically forwards the DISPLAY environment variable to all executed commands, enabling GUI applications to open on the correct display. This works for both non-persistent commands and persistent shell sessions.

Example: Launch a GUI application

# Set DISPLAY when starting the server
DISPLAY=:0 ./mcp-terminal-server

# GUI applications launched through MCP will use the correct display
# e.g., xterm, firefox, gedit, etc.

Server Endpoints

When running in HTTP mode (--http flag), the server provides:

  • POST /mcp - StreamableHTTP transport endpoint for all MCP operations
    • Supports initialize, tools/list, tools/call methods
    • Requires Mcp-Session-Id header for authenticated requests
    • Returns session ID in response headers for initialize calls

MCP Protocol Support

The server implements the Model Context Protocol specification:

  • JSON-RPC 2.0 communication
  • Session management with UUID-based session IDs
  • Tool execution with structured input/output
  • Error handling with standard JSON-RPC error codes

Platform Support

  • macOS (darwin): Full support - AMD64 & ARM64
  • Linux: Full support - AMD64 & ARM64
  • Docker: Multi-architecture support via buildx

Integration

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "terminal": {
      "command": "/path/to/mcp-terminal-server",
      "env": {
        "MCP_COMMAND_TIMEOUT": "30",
        "DISPLAY": ":0"
      }
    }
  }
}

Docker

# Run AMD64 image
docker run --rm -p 8080:8080 terminal-mcp:latest-linux-amd64 --http --port 8080

# Run ARM64 image  
docker run --rm -p 8080:8080 terminal-mcp:latest-linux-arm64 --http --port 8080

# Run with persistent shell session
docker run --rm -p 8080:8080 -v /tmp:/tmp terminal-mcp:latest-linux-amd64 --http --port 8080

Other MCP Clients

The server follows the standard MCP protocol and should work with any compliant MCP client.

Development

Building

# Build for current platform
make build

# Build for all platforms
make build-all

# Build Docker images
make docker-build

# Build and push Docker images
REGISTRY=your-registry.com make docker-push

# Build DXT package for distribution
make dxt

Dependencies

  • github.com/mark3labs/mcp-go - MCP Go library
  • Go 1.23+ (automatically managed)

Production Deployment

For production environments, it's recommended to run the server with proper process management and security measures:

Process Management

  • s6: Lightweight process supervision with automatic restart
  • systemd: Full-featured service management with resource limits
  • Docker: Containerized deployment with security isolation
  • Supervisor: Python-based process management

Security Features

  • Non-root execution: Run with dedicated user account for limited privileges
  • Resource limits: CPU, memory, and file access restrictions
  • Network isolation: Bind to localhost only for enhanced security
  • AppArmor/SELinux: Additional mandatory access controls
  • File permissions: Restricted access to necessary directories only

📋 See Process Management Guide for detailed setup instructions

Integration with Iris Agent

This MCP server is used by the Iris Computer Use Agent, our advanced computer use agent for automated terminal interactions.

License

This project is provided as-is for development purposes.

README mirrored from the source repository 3 days ago. The original is authoritative.

Questions

About Terminal MCP

How do I install Terminal MCP?

Run npx terminal-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Terminal MCP safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Terminal MCP still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.