Mcp Config — theailanguage/terminal_server
MCP server that can execute terminal commands
6/19/2026 · 22 viewsMCP config
// NOTE - reference file only, actual claude config located at // ~/Library/Application\ Support/Claude/claude_desktop_config.json // NEEDS TO BE UPDATED
// WITHOUT DOCKER IMPLEMENTATION { "mcpServers": { "terminal": { "command": "/Users/theailanguage/.local/bin/uv", "args": [ "--directory", "/Users/theailanguage/mcp/servers/terminal_server", "run", "terminal_server.py" ] } } }
// WITH DOCKER IMPLEMENTATION { "mcpServers": { "terminal_server": { "command": "docker", "args": [ "run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "-v", "/Users/theailanguage/mcp/workspace:/root/mcp/workspace", "terminal_server_docker" ] } } }
Source: theailanguage/terminal_server · 86★ Repo: MCP server that can execute terminal commands