<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: TiM00R</title>
    <description>The latest articles on DEV Community by TiM00R (@tim00r).</description>
    <link>https://dev.to/tim00r</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3822889%2F62307311-5b01-4d83-b919-cb03465c1a90.png</url>
      <title>DEV Community: TiM00R</title>
      <link>https://dev.to/tim00r</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tim00r"/>
    <language>en</language>
    <item>
      <title>How I Let Claude Manage My Linux Servers With a Real-Time Terminal</title>
      <dc:creator>TiM00R</dc:creator>
      <pubDate>Fri, 13 Mar 2026 18:27:57 +0000</pubDate>
      <link>https://dev.to/tim00r/how-i-let-claude-manage-my-linux-servers-with-a-real-time-terminal-a6a</link>
      <guid>https://dev.to/tim00r/how-i-let-claude-manage-my-linux-servers-with-a-real-time-terminal-a6a</guid>
      <description>&lt;p&gt;&lt;strong&gt;See it in action:&lt;/strong&gt; &lt;a href="https://github.com/user-attachments/assets/98a6fa41-ec4f-410b-8d4a-a2422d8ac7c9" rel="noopener noreferrer"&gt;Demo Video&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;If you've ever used AI to help manage a Linux server, you know the drill:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Forgot a command? Ask Claude&lt;/li&gt;
&lt;li&gt;Copy the command, switch to your terminal, paste it&lt;/li&gt;
&lt;li&gt;Get 500 lines of output&lt;/li&gt;
&lt;li&gt;Copy it all, paste back to Claude for analysis&lt;/li&gt;
&lt;li&gt;Claude burns tokens reading the whole thing just to say "nginx is running fine"&lt;/li&gt;
&lt;li&gt;Repeat for the next command&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;One command at a time. Copy. Paste. Copy. Paste. Token waste.&lt;/p&gt;

&lt;p&gt;Some MCP servers try to solve this by letting Claude run commands directly. But they're completely blind - commands execute behind the scenes and you get back a text summary. No terminal. No visibility. No control. Would you let someone manage your production server while blindfolded?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Remote Terminal MCP
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://github.com/TiM00R/remote-terminal" rel="noopener noreferrer"&gt;Remote Terminal MCP&lt;/a&gt; - an SSH server management tool where you and Claude share the same terminal session.&lt;/p&gt;

&lt;p&gt;The key: there's a &lt;strong&gt;full interactive terminal&lt;/strong&gt; in your browser at &lt;code&gt;localhost:8080&lt;/code&gt;. This isn't a log viewer - it's a real terminal like WSL, PuTTY, or Termius. Colored output, scroll history, copy/paste, arrow keys, and everything else you'd expect.&lt;/p&gt;

&lt;p&gt;When Claude runs a command, you see it appear in your terminal in real-time. And you can type your own commands at any moment - intervene, correct course, run something manually.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;Behind the scenes, Remote Terminal uses a dual-stream architecture:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Your terminal&lt;/strong&gt; gets the full raw output - every line, every color&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude&lt;/strong&gt; gets smart-filtered summaries saving 95-98% on tokens&lt;/li&gt;
&lt;li&gt;When Claude needs the full output, it can request the unfiltered version&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Both streams share the same SSH session. You're never in the dark about what's happening on your server.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Interactive browser terminal&lt;/strong&gt; - colored output, scroll, type, paste, arrow keys&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Shared session&lt;/strong&gt; - both AI and user type in the same terminal&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-terminal sync&lt;/strong&gt; - open multiple browser windows, all stay synchronized&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-server management&lt;/strong&gt; - configure and switch between servers easily&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SFTP file transfers&lt;/strong&gt; - upload/download files and directories with compression&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Batch script execution&lt;/strong&gt; - run multi-command scripts 10-50x faster than one at a time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recipe system&lt;/strong&gt; - save successful workflows and replay them on any server&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Command audit trail&lt;/strong&gt; - every command persisted across sessions in SQLite&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;

&lt;p&gt;It's a PyPI package, so getting started is simple:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;remote-terminal-mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Configure Claude Desktop to use it, define your servers in &lt;code&gt;hosts.yaml&lt;/code&gt;, and you're ready to go. Full setup instructions on &lt;a href="https://github.com/TiM00R/remote-terminal" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/TiM00R/remote-terminal" rel="noopener noreferrer"&gt;https://github.com/TiM00R/remote-terminal&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PyPI&lt;/strong&gt;: &lt;a href="https://pypi.org/project/remote-terminal-mcp/" rel="noopener noreferrer"&gt;https://pypi.org/project/remote-terminal-mcp/&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Registry&lt;/strong&gt;: &lt;a href="https://registry.modelcontextprotocol.io/v0.1/servers/io.github.TiM00R%2Fremote-terminal/versions/latest" rel="noopener noreferrer"&gt;Published and active&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Would love feedback and suggestions. What features would you want to see next?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>linux</category>
      <category>ssh</category>
      <category>devops</category>
    </item>
  </channel>
</rss>
