laptop-gpu-mcp
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., "@laptop-gpu-mcprun train.py on pytorch env with args --epochs 5"
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.
laptop-gpu-mcp
A minimal MCP (Model Context Protocol) server for running Python scripts on a remote machine over HTTP. Expose your Python environment to Claude as discoverable, schema-validated tools instead of hand-rolling SSH commands.
What this does
Exposes three tools to Claude:
list_scripts— discover.pyfiles in your scripts directoryrun_python— execute a script in a specific conda environment; optionally run in background and poll resultsjob_status— check status or list all running jobs
Claude can call these like function calls, with automatic parameter validation and error handling.
Related MCP server: mcp-connect
Why MCP instead of SSH?
Instead of: ssh user@host 'python script.py ...' with manual parsing of output
You get: Claude sees run_python(script, env, args, background, timeout) as a typed tool
Benefits:
Claude reasons about which tool to use
Parameters are validated before execution (e.g., rejects path traversal, invalid conda envs)
Background jobs get tracked with job IDs that Claude can poll later
If you add tools later, Claude discovers them automatically
Customize for your setup
Clone this repo and edit these files:
1. Configuration
Copy the example config and edit it for your machine:
cp config.example.json config.json{
"scriptsBaseDir": "/home/youruser/scripts", // Where your .py files live
"condaBaseDir": "/home/youruser/miniconda3", // Your conda installation
"allowedEnvs": ["env1", "env2"], // Conda envs you want to expose
"host": "0.0.0.0", // Listen on all interfaces
"port": 8420 // HTTP port (change if in use)
}config.json is gitignored, so your paths and environment names never get
committed. Every setting can also be overridden with an environment variable
(SCRIPTS_BASE_DIR, CONDA_BASE_DIR, ALLOWED_CONDA_ENVS as a comma-separated
list, MCP_HOST, MCP_PORT) — handy for one-off runs or systemd units. Env
vars take precedence over config.json.
2. Security: Firewall and auth
This server has no authentication. It's safe only on private networks.
If running on a machine you control (same network, no internet exposure):
Allow the port through your firewall for the remote client's subnet
Example (Linux):
sudo ufw allow from 192.168.1.0/24 to any port 8420Example (Windows): netsh or Windows Defender firewall rules
If you need to expose this beyond a trusted network, add auth before deploying.
3. Optional: Persistent background service
To survive reboots, use systemd (Linux) or Task Scheduler (Windows). Examples in NOTES.md.
Quick start
npm install
npm run build
npm start # Listens on http://0.0.0.0:8420/mcp
# Or for development (no build step):
npm run devHealth check: curl http://localhost:8420/health
Connecting from Claude
Claude Code CLI
claude mcp add --transport http my-remote-python http://192.168.1.100:8420/mcp(Replace 192.168.1.100 with your server's IP)
Claude Desktop
Settings → Connectors → Add custom connector, use the same URL.
After connecting, Claude will see your three tools and can call them directly.
Example usage
Run a script in the foreground:
Claude: run_python(script="train.py", env="pytorch", args=["--epochs", "10"])
→ Blocks until done, returns stdout/stderrStart a long job in the background:
Claude: run_python(script="preprocess.py", env="data", background=true)
→ Returns job_id immediately (e.g., "job_abc123")
Claude: job_status(job_id="job_abc123")
→ Check progress, returns status and logsTesting
Included test scripts:
src/hello.py— simple foreground testsrc/slow.py— long-running background test
Adapt these to verify your setup works.
Known limitations
No persistence on crash. If the server process dies, jobs die with it. Use a systemd service or Task Scheduler to auto-restart (see
NOTES.mdfor deployment details and known issues).Single machine only. This server runs Python on one remote machine. To run on multiple machines, deploy one server per machine.
No job persistence. Job state lives only in memory; reboots lose it.
Next steps
Clone this repo
Set
SCRIPTS_BASE_DIR,CONDA_BASE_DIR,ALLOWED_CONDA_ENVSfor your machinenpm install && npm run build && npm startTest connectivity:
curl http://your-server:8420/healthAdd the HTTP connector to Claude Code/Desktop
Try calling the tools
See NOTES.md for deployment troubleshooting and operational notes.
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.
Latest Blog Posts
- 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/mbeh768/laptop_gpu_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server