Termix MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Termix MCP Serverlist all saved SSH hosts"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Termix MCP Server
An MCP server that lets Claude (or any other MCP client) talk to a self-hosted Termix instance — the open-source SSH client / server-management tool — via its REST API.
This is a community/unofficial project, not affiliated with the Termix team.
What it can do
Tool | Description |
| List all saved SSH hosts |
| Get a host by ID |
| Create a new host |
| Update a host |
| Delete a host |
| Online/offline status of all hosts |
| Status of one host |
| CPU/memory/disk/network metrics for a host |
| Status of all SSH tunnels |
| Status of one tunnel |
| Start a configured tunnel |
| Stop a tunnel |
| Recent activity log |
| Alert status |
Docker container management (list/start/stop/restart) is not exposed as tools: on the live backend it runs over a stateful SSH-session + Socket.IO channel, not plain REST request/response, so it doesn't fit this server's simple per-tool model. It was removed after being verified against the actual Termix backend source (see "Notes & caveats" below) — the earlier version of this README advertised it, but it never actually worked against a real instance.
Related MCP server: MCP SSH Tools Server
Requirements
Node.js 18+
A running, self-hosted Termix instance (see the Termix install docs)
A Termix API key (see below)
Creating a Termix API key
Verified live against Termix v2.5.0.
Log into your Termix web UI.
Click your username in the bottom-left corner of the sidebar, then choose User Profile.
Open the API Keys tab (in the left panel of the User Profile page).
Click New Key.
Give it a name (e.g.
mcp-server) and, optionally, an expiry date (dd-mm-jjjjfield — leave blank for a key that doesn't expire).Click Create Key.
Known quirk: in the version tested here (v2.5.0), Termix does not
display or let you copy the full key value anywhere in the UI after
creation — only a short prefix (tmx_xxxxxxxx…) is shown, for
identification only. There's no visible one-time reveal dialog or copy
button for the full secret. If your version behaves the same way, check
the Termix GitHub repo (issues/
releases) for the current recommended way to obtain a usable key value —
this may be a UI gap that gets fixed, or there may be an alternative flow
(e.g. via the setup wizard, or a config/CLI option) depending on your
version. A JWT bearer token (obtained by logging in) is a working fallback
if API keys aren't usable in your version — see the Termix API docs'
Authentication section for details.
Each key inherits the permissions of the user that created it, and is sent
as Authorization: Bearer <key> on every request — which is exactly what
this MCP server does (see TERMIX_API_KEY below).
Setup
git clone <your-fork-url> termix-mcp
cd termix-mcp
npm install
npm run setupnpm run setup runs an interactive prompt that asks for your Termix URL
and API key, and writes them to a local .env file for you (git-ignored,
so it's never committed). It's the easiest way to get started.
If you'd rather not use the interactive prompt, do it manually instead:
cp .env.example .env
# edit .env and fill in TERMIX_BASE_URL and TERMIX_API_KEYTERMIX_BASE_URL is the base URL of the Termix backend API, not the
web UI — for a default local Docker install this is typically
http://localhost:30001; adjust if you've changed ports or are running
behind a reverse proxy.
Termix's backend is actually split across several independent services on different ports, confirmed by reading the Termix backend source directly (the hosted API docs return 403 to automated fetches, and didn't fully match what a live v2.5.0 instance actually does):
Service | Default port | Used for |
main API | 30001 ( | SSH hosts CRUD, alerts |
metrics API | 30005 ( | host online/offline status, live metrics |
dashboard API | 30006 ( | recent activity log |
tunnel API | 30003 ( | SSH tunnel status/connect/disconnect |
You only need to set TERMIX_BASE_URL (+ TERMIX_API_KEY) — the other
three default to the same host as TERMIX_BASE_URL with the port swapped,
which matches a stock Termix deployment. Only set them explicitly if your
setup exposes these services on different hosts/ports (e.g. behind a
reverse proxy with custom routing).
Run it directly
npm startThe server communicates over stdio, so it's meant to be launched by an MCP client (Claude Desktop, Claude Code, etc.), not run standalone in a terminal for interactive use.
Configure in Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"termix": {
"command": "node",
"args": ["/absolute/path/to/termix-mcp/src/index.js"],
"env": {
"TERMIX_BASE_URL": "http://localhost:30001",
"TERMIX_API_KEY": "your_termix_api_key_here"
}
}
}
}Restart Claude Desktop afterwards. If you already ran npm run setup
(which created a .env file), you can omit the "env" block entirely —
the server loads .env automatically.
Configure in Claude Code
claude mcp add termix -- node /absolute/path/to/termix-mcp/src/index.jsThen set TERMIX_BASE_URL / TERMIX_API_KEY in your shell environment or
in the MCP server config, per the Claude Code docs.
Notes & caveats
All endpoints currently wired up (
/host/db/host,/status,/metrics/:id,/ssh/tunnel/*,/activity/recent,/alerts) were individually verified against a live Termix v2.5.0 instance — both by reading the actual backend route definitions in the Termix source and by making real authenticated requests. The hosted API docs (docs.termix.site) return 403 to automated fetches and, in an earlier version of this project, some assumed paths/ports turned out wrong when checked against the real backend — trust the source + your own live instance over the docs site if they disagree.create_ssh_hostaccepts a free-form JSON object for the host body because the schema varies a lot depending on auth type (password, key, credential reference, Tailscale, etc.) — inspect an existing host viaget_ssh_host/list_ssh_hostsfor a concrete example on your instance.update_ssh_host's body shape wasn't independently verified beyond "same shape as create" — check a real host object first if a field doesn't seem to apply.Destructive tools (
delete_ssh_host,disconnect_ssh_tunnel) are exposed as regular tools with no extra confirmation step built in — if you're wiring this into an agent that acts autonomously, consider gating those in your client/agent policy.No pagination/filtering helpers are included; responses are returned as-is from the Termix API.
Extending
Add new endpoints in two steps:
Add a method to
termixinsrc/termix-client.jsthat calls one of the per-service helpers (main,metrics,dashboard,tunnel) with(method, path, { query, body })— pick whichever service actually owns that route (see the port table above, or checksrc/backend/database/database.ts'sapp.use(...)calls and each service file's ownPORTconstant in the Termix source if you're not sure).Register a
server.tool(...)insrc/index.jsthat calls it.
Don't trust route names/paths from the hosted docs site without checking the backend source or a live request first — that's what caused the wrong paths this project shipped with initially.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceA server that enables secure interaction with remote SSH hosts through standardized MCP interface, providing functions like listing hosts, executing commands, and transferring files using native SSH tools.Last updated750385MIT
- FlicenseAqualityFmaintenanceA server based on the MCP framework that provides remote server management capabilities through SSH, supporting features like connection pooling, file transfers, and remote command execution.Last updated7
- Alicense-qualityDmaintenanceMCP server for SSH remote execution, file transfer, and file editing with automatic backup/trash and ~/.ssh/config integration.Last updated1171MIT
- AlicenseAqualityBmaintenanceMCP server for managing remote servers via SSH, enabling command execution, file transfer, rsync, tunnels, health checks, backups, and database operations.Last updated176961MIT
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for Appcircle mobile CI/CD platform.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kalmma/termix-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server