# in.termal/termalin-web (remote · termal.in)

Run commands and read/write files on your servers over Termalin's keyless tunnels (hosted MCP).

- Trust score: 61/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-08

## Components

- remote · `termal.in`: 61/100 (this document), [markdown](https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp.md), [page](https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp)

## Channel facts

- Endpoint: `https://termal.in/api/v1/mcp`
- Transports: `streamable-http`
- Auth: `required`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-08.

- **Endpoint Security**: 51/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 6 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 512 tokens (~85/item across 6 items; 6 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http in-termal-termalin-web https://termal.in/api/v1/mcp
```

### Codex

```toml
[mcp_servers.in-termal-termalin-web]
url = "https://termal.in/api/v1/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "in-termal-termalin-web": {
      "type": "remote",
      "url": "https://termal.in/api/v1/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add in-termal-termalin-web --url https://termal.in/api/v1/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  in-termal-termalin-web:
    url: "https://termal.in/api/v1/mcp"
```

### Other

```json
{
  "mcpServers": {
    "in-termal-termalin-web": {
      "type": "http",
      "url": "https://termal.in/api/v1/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-08 (score 61, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-07 (score 61, +30)

- [security regression] Authorization: fail → unverified
- [security improvement] Transport: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass
- [functional] First check of Tool coverage: 100
- [functional] First check of Schema quality: excellent

### 2026-08-05 (score 31)

First indexed and scored.

## MCP tools (6)

### `hosts_list` (~44 tokens)

List the servers reachable through Termalin (your tunnel agents). Returns id, name, whether the server is online, and the default login user. Use the id with ssh_exec.

### `generate_password` (~53 tokens)

Generate a strong random password — handy when creating a user or setting a password on a server. Returns the password only; nothing is stored.

Input parameters:

- `length` (integer): length (default 20, 8-128)

### `ssh_exec` (~109 tokens)

Run a single shell command on one of your servers and return its combined output. Runs keyless over Termalin's tunnel — no SSH key, and the server needs no open inbound port.

Input parameters:

- `command` (string, required): Shell command to execute
- `host` (string, required): Server id from hosts_list
- `timeoutSeconds` (number): Max seconds to wait (default 60, up to 300)
- `username` (string): Login user (defaults to the tunnel's user, else root)

### `sftp_list` (~98 tokens)

List a directory on one of your servers over SFTP. Returns each entry's name, whether it's a directory, size and modified time. Runs keyless over Termalin's tunnel, like ssh_exec.

Input parameters:

- `host` (string, required): Server id from hosts_list
- `path` (string): Directory to list (default the login home, ".")
- `username` (string): Login user (defaults to the tunnel's user, else root)

### `sftp_read` (~99 tokens)

Read a text file from one of your servers over SFTP and return its contents. Files over 512 KB or non-text (binary) files are refused — use ssh_exec (e.g. sed/tail) for those.

Input parameters:

- `host` (string, required): Server id from hosts_list
- `path` (string, required): Absolute or home-relative file path
- `username` (string): Login user (defaults to the tunnel's user, else root)

### `sftp_write` (~109 tokens)

Create or overwrite a text file on one of your servers over SFTP. 'content' is written as UTF-8. Capped at 512 KB; for binary uploads use a terminal/scp instead.

Input parameters:

- `content` (string, required): UTF-8 text to write
- `host` (string, required): Server id from hosts_list
- `path` (string, required): Destination file path (created or overwritten)
- `username` (string): Login user (defaults to the tunnel's user, else root)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp#diagnostics

## Score history

- 2026-08-08: 61
- 2026-08-07: 61
- 2026-08-06: 31
- 2026-08-05: 31

## Links

- Remote endpoint: https://termal.in/api/v1/mcp
- Authorisation metadata: https://termal.in/.well-known/oauth-protected-resource/api/v1/mcp
- Website: https://termal.in/mcp/
- Changelog RSS feed: https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp.json
- HTML version of this page: https://verifymcp.io/servers/in-termal-termalin-web/api-v1-mcp
