AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP unreviewed MIT Self-run

Claude Server Control Plugin

mcp-d0raka-claude-server-control-plugin · by d0raka

Control any computer from Claude - Linux, macOS, or Windows via SSH. A Claude Cowork plugin.

— No reviews yet
0 installs
45 views
0.0% view→install

Install

$ agentstack add mcp-d0raka-claude-server-control-plugin

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • • Prompt-injection patterns
  • • Secret / credential exfiltration
  • • Dangerous shell & filesystem operations
  • • Untrusted network calls
  • • Known-malicious package signatures
  • high Pipes remote content directly into a shell (remote code execution).

What it can access

  • ● Network access Used
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

— Not yet reviewed
0 installs to date
— no reviews yet
○ 6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Claude Server Control Plugin? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Claude Server Control Plugin

Control any computer remotely from Claude - Linux, macOS, or Windows - using natural conversation.

Run commands, manage services, deploy code, monitor health, edit files - all through Claude, without touching a terminal yourself.


Install - one command

Linux or macOS:

bash  "What's the CPU and memory usage?"

> "Restart nginx"

> "Show me the last 50 lines of the app log"

> "Is the database running?"

> "Deploy the latest version from git"

> "What docker containers are running?"

> "Find all files larger than 1GB"

> "What's in the Windows Event Log - any errors in the last hour?"

---

## Security

This plugin gives Claude SSH access to your machine. A few things to keep in mind:

- **Use Tailscale** - don't expose port 22 to the public internet
- **Use SSH key auth** instead of passwords for better security:
  ```bash
  ssh-keygen -t ed25519 -C "claude-plugin"
  ssh-copy-id user@YOUR_IP
  ```
  Then edit `SKILL.md` and replace the password line with `key_filename='/path/to/key'`
- **Keep the plugin folder private** - it contains your credentials after install
- **Never push your filled-in SKILL.md** to a public repo

---

## File structure

claude-server-control-plugin/ ├── install.sh # Linux/Mac one-liner installer ├── install.ps1 # Windows one-liner installer ├── .claude-plugin/ │ └── plugin.json ├── skills/ │ └── server-control/ │ ├── SKILL.md # Active skill (filled in by installer) │ ├── SKILL-mac.md # macOS version │ └── SKILL-windows.md # Windows version ├── setup/ │ ├── setup-linux.sh # Run on the remote Linux machine │ ├── setup-mac.sh # Run on the remote Mac │ └── setup-windows.ps1 # Run on the remote Windows machine (as Admin) ├── .mcp.json ├── .gitignore └── README.md


---

## Troubleshooting

**Can't connect:**
- Is Tailscale running on both machines? Run `tailscale status`
- Is SSH running? Linux: `systemctl status ssh` / Mac: System Settings -> Sharing -> Remote Login / Windows: `Get-Service sshd`
- Test manually from your terminal: `ssh YOUR_USERNAME@YOUR_IP`

**Wrong credentials after install:**
- Re-run the installer - it updates SKILL.md for you
- Or edit `skills/server-control/SKILL.md` directly

**Windows: Claude is using CMD instead of PowerShell:**
- Re-run `setup/setup-windows.ps1` as Administrator

---

## License

MIT - fork it, adapt it, make it yours.

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [d0raka](https://github.com/d0raka)
- **Source:** [d0raka/claude-server-control-plugin](https://github.com/d0raka/claude-server-control-plugin)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.