Eustis
FreeNot checkedUnofficial MCP server for SSH and SCP access to UCF's Eustis Linux server with bridge mode support for sandboxed clients.
About
Unofficial MCP server for SSH and SCP access to UCF's Eustis Linux server with bridge mode support for sandboxed clients.
README
Unofficial MCP server for UCF's Eustis Linux server.
This project is not affiliated with or maintained by UCF.
It lets an MCP client run SSH commands on eustis3.eecs.ucf.edu, transfer files with SCP, and detect whether it should use direct network access or a local bridge worker.
If you use this for coursework, you are responsible for verifying that it is allowed by your instructor and course policies before using it on class assignments.
Before You Start
- If you are not on UCF Wi-Fi or another UCF network, connect to the UCF VPN first with Cisco AnyConnect / Cisco Secure Client at
https://secure.vpn.ucf.edu. - You need SSH access to
eustis3.eecs.ucf.edu. - For best results, set up SSH keys for Eustis.
Quick Start
Codex
Install the MCP:
./install.sh --nid your_nid --bridge
If your client is sandboxed, start the bridge worker:
./bridge.sh
Then in the MCP client, call:
{
"name": "diagnose_runtime",
"arguments": {}
}
If that looks good, test:
{
"name": "list_remote_home",
"arguments": {
"timeout_seconds": 10
}
}
When To Use The Bridge
Use bridge mode when:
ssh [email protected]works in your normal terminal- but your MCP client cannot resolve or reach Eustis
Bridge mode lets the MCP server hand SSH and SCP work to a helper process running outside the sandbox on the same machine.
Client Setup
The MCP server command is:
python3 /absolute/path/to/eustis-mcp/server.py
Useful environment variables:
EUSTIS_NID=your_nid
EUSTIS_USE_BRIDGE=1
Optional:
EUSTIS_BRIDGE_DIR=/tmp/eustis-mcp-youruser
Codex Config
./install.sh --nid your_nid --bridge writes the Codex config for you.
Claude Desktop / Cursor / Other JSON MCP Clients
{
"mcpServers": {
"eustis": {
"command": "python3",
"args": ["/absolute/path/to/eustis-mcp/server.py"],
"env": {
"EUSTIS_NID": "your_nid",
"EUSTIS_USE_BRIDGE": "1"
}
}
}
}
SSH Key Setup
If you have not set up SSH keys yet:
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519_eustis -C "[email protected]"
ssh-copy-id -i ~/.ssh/id_ed25519_eustis.pub [email protected]
ssh -o BatchMode=yes [email protected] -- pwd
If the last command prints your home directory, MCP remote execution should work much more smoothly.
Bridge Automation
Start bridge auto-launch at login:
macOS
./install_bridge_macos.sh
Linux
./install_bridge_linux.sh
Windows
powershell -ExecutionPolicy Bypass -File .\install_bridge_windows.ps1
Most Useful Tools
diagnose_runtimebridge_statuslist_remote_homerun_remote_commandupload_to_eustisdownload_from_eustis
Troubleshooting
Could not resolve hostname
Usually means:
- you are not connected to UCF VPN
- or your MCP client cannot see the host network
If ssh works in your terminal but not in the MCP client, use bridge mode.
Bridge Mode Times Out
Make sure:
./bridge.shis running- your normal terminal can SSH to Eustis
- your SSH keys are installed on Eustis
Test SSH Directly
ssh -o BatchMode=yes [email protected] -- pwd
Security Notes
- Do not store your NID password in this repo or client config.
- This project does not automate the UCF VPN login flow.
- Bridge mode is local-only and uses a private per-user temp directory.
Installing Eustis
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/driverext/eustis-mcpFAQ
Is Eustis MCP free?
Yes, Eustis MCP is free — one-click install via Unyly at no cost.
Does Eustis need an API key?
No, Eustis runs without API keys or environment variables.
Is Eustis hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Eustis in Claude Desktop, Claude Code or Cursor?
Open Eustis on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Eustis with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
