
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@mindstone/mcp-server-replit-ssh
Advanced tools
Replit SSH MCP server — read, write, list, and check files on Replit projects over SSH/SFTP, plus generate the local SSH key and config.
Replit SSH MCP server — read, write, list, and check files on Replit projects over SSH/SFTP, plus generate the local SSH key and config.
~/.ssh/rebel-replit by default; resolved via ~/.ssh/config IdentityFile if set)*.replit.dev hosts onlynpx -y @mindstone/mcp-server-replit-ssh
This server connects to live Replit projects over SSH, so the operator needs:
*.replit.dev host from a Replit project (open the project, click "SSH" → "Connect" → "Connect manually", and copy the host + username from the displayed ssh command).The bundled replit_setup_ssh tool generates an Ed25519 key at ~/.ssh/rebel-replit, hardens the file permissions, and appends a *.replit.dev block to ~/.ssh/config. Run it once if no SSH key exists yet, then add the printed public key to Replit. Alternatively, point the existing ~/.ssh/config IdentityFile for *.replit.dev at an existing key and the server will use that instead.
This server has no required environment variables. Optional:
REPLIT_SSH_REQUEST_TIMEOUT_MS — per-request timeout in milliseconds (default: 60000). Tool-level timeout for SFTP operations; the lower-level TCP/SSH handshake uses a separate 30-second budget.replit_check_connection — verify SSH connectivity, working directory, and SFTP support. Set verbose=true for handshake/auth diagnostics.replit_list_files — list files and directories at a path (relative to the project root). Default path is ..replit_read_file — read a file. UTF-8 text by default; binary files (detected via null-byte scan) are returned as base64.replit_write_file — atomic write via temp + ext_openssh_rename with SHA-256 read-back verification. Fails closed if the server doesn't support atomic overwrite and the target already exists (we never unlink + rename, which opens a data-loss window).replit_setup_ssh — generate an Ed25519 key pair at ~/.ssh/rebel-replit, write public/private files with mode 0600 (or icacls ACL on Windows), and append a *.replit.dev block to ~/.ssh/config. Idempotent by default; pass force_regenerate=true to replace the existing key (you will need to re-register the new public key with Replit).*.replit.dev hosts are accepted, case-insensitive suffix match. Any other host is rejected before the SSH connection is opened.~/.ssh/ mutation surface. replit_setup_ssh writes to the operator's home directory (~/.ssh/rebel-replit, ~/.ssh/rebel-replit.pub, ~/.ssh/config). Configuration rewrites use the ssh-config library's structured parse/stringify (not string splicing) so existing entries and comments are preserved... segments — relative paths only, no escape from the project root.replit_write_file writes to a randomized temp filename, renames via OpenSSH's POSIX rename extension (ext_openssh_rename), and verifies the final file's SHA-256 against the expected hash. If the server lacks the extension and the target file already exists, the write fails rather than falling back to unlink + rename.replit_write_file re-reads the final file and asserts SHA-256 equality before returning verified: true.This connector does not currently verify the SSH server's host key when connecting
to *.replit.dev hosts. A network-path man-in-the-middle could intercept SFTP
sessions to read/modify file contents (the SSH private key itself is not
exposed via this vector, since public-key auth does not transmit the private key).
This is on the roadmap as a TOFU (trust-on-first-use) verification layer with optional Replit-published host-key pinning. Track the issue at .
Mitigations: avoid using this connector over untrusted networks (public wifi, shared ISPs) until host-key verification ships.
FAQs
Replit SSH MCP server — read, write, list, and check files on Replit projects over SSH/SFTP, plus generate the local SSH key and config.
The npm package @mindstone/mcp-server-replit-ssh receives a total of 558 weekly downloads. As such, @mindstone/mcp-server-replit-ssh popularity was classified as not popular.
We found that @mindstone/mcp-server-replit-ssh demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.