Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Replit SSH

NPM · @MINDSTONE/MCP-SERVER-REPLIT-SSH · SCANNED AUG 6

Read, write, list, and check files on Replit projects over SSH/SFTP, plus SSH key setup.

+39 this week 67 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Known CVEs were checked across the 110 of 114 dependencies we could resolve, so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Dependency health was assessed across the 110 of 114 dependencies we could resolve, so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency32
Schema Quality & AI Usability74
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 672 tokens (~134/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management33
  • Stability observed for 10 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @mindstone/mcp-server-replit-ssh

# add to Claude Code
claude mcp add mindstone-mcp-server-replit-ssh -- npx -y @mindstone/mcp-server-replit-ssh
# add to Codex CLI
codex mcp add mindstone-mcp-server-replit-ssh -- npx -y @mindstone/mcp-server-replit-ssh
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mindstone-mcp-server-replit-ssh": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@mindstone/mcp-server-replit-ssh"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add mindstone-mcp-server-replit-ssh --command npx --arg -y --arg @mindstone/mcp-server-replit-ssh
# ~/.hermes/config.yaml
mcp_servers:
  mindstone-mcp-server-replit-ssh:
    command: "npx"
    args: ["-y", "@mindstone/mcp-server-replit-ssh"]
// mcp.json
{
  "mcpServers": {
    "mindstone-mcp-server-replit-ssh": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-replit-ssh"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 4 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes. Other categories moved too: Supply Chain Security rose 1.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +60
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Malware scan: unverified → pass security
    • License: unverified → fail functional
    • Schema quality: unverified → excellent functional
    • Dependency health: unverified → partial functional
    • Stability: unverified → 0.20 functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Tool coverage: unverified → 100 functional
    • Licence: FSL-1.1-MIT functional
  • 1 Aug 26 −15
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 31 Jul 26 −8
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −18
    • Malware scan: pass → unverified security
  • 27 Jul 26 46

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 6 Aug 2026 · Analysed npm/@mindstone/[email protected]

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 110 packages
Packages resolved 110
Deprecated 110
Stale 40
Tree resolution Partial

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools · 5 exposed · ~672 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
replit_check_connection ~141

Check SSH connectivity to a Replit project. Verifies the connection works and reports the working directory, SFTP support, and server information. Use this to validate setup before file operations. Set verbose=true for detailed diagnostics when troubleshooting auth or connection failures.

NameTypeReqDescription
hoststringyesSSH host (e.g., "<uuid>-00-<hash>.riker.replit.dev")
userstringyesSSH username — the value before @ in the "Connect manually" SSH command (a UUID)
verbosebooleanEnable verbose diagnostics — captures handshake, auth attempts, key validation, and timing. Use when troubleshooting connection or auth failures.

No output schema declared.

No examples provided.

replit_list_files ~115

List files and directories in a Replit project path. Returns file names, sizes, and types (file/directory). Use "." for root or specify a subdirectory path.

NameTypeReqDescription
hoststringyesSSH host (e.g., "<uuid>-00-<hash>.riker.replit.dev")
pathstringDirectory path to list relative to project root (default: ".")
userstringyesSSH username — the value before @ in the "Connect manually" SSH command (a UUID)

No output schema declared.

No examples provided.

replit_read_file ~106

Read the contents of a file from a Replit project. Returns the file content as text. For binary files, returns base64-encoded content.

NameTypeReqDescription
hoststringyesSSH host (e.g., "<uuid>-00-<hash>.riker.replit.dev")
pathstringyesFile path to read relative to project root
userstringyesSSH username — the value before @ in the "Connect manually" SSH command (a UUID)

No output schema declared.

No examples provided.

replit_setup_ssh ~109

Set up SSH keys and configuration for connecting to Replit projects. Generates an Ed25519 key pair, configures ~/.ssh/config, and provides the public key for the user to add to their Replit account. Safe to run multiple times — skips steps already completed.

NameTypeReqDescription
backup_existing_configbooleanCreate a timestamped ~/.ssh/config backup before rewriting (default: false).
force_regeneratebooleanGenerate a new key even if one exists (default: false).

No output schema declared.

No examples provided.

replit_write_file ~201

Write content to a file in a Replit project. Creates parent directories if needed. Uses atomic write (temp file + rename) and verifies the write by reading back. For binary files (images, etc.), pass base64-encoded content with encoding "base64".

NameTypeReqDescription
contentstringyesFile content to write. For binary files (images, PDFs, etc.), provide base64-encoded content and set encoding to "base64".
encodingstringContent encoding. Use "utf-8" (default) for text files, "base64" for binary files (images, PDFs, etc.).
hoststringyesSSH host (e.g., "<uuid>-00-<hash>.riker.replit.dev")
pathstringyesFile path to write relative to project root
userstringyesSSH username — the value before @ in the "Connect manually" SSH command (a UUID)

No output schema declared.

No examples provided.