MCP server wrapper for Smbmap — SMB share enumeration and exploitation.
Smbmap (smbmap) is a security tool that provides: SMB share enumeration and exploitation.
See ShaunBarton/smbmap for full documentation.
No API keys required — Smbmap runs locally inside the Docker container.
Summary. MCP server wrapper for Smbmap — SMB share enumeration and exploitation.
Tools:
run_smbmap — Run smbmap with the given arguments. Returns structured JSON output.run_smbmapRun smbmap with the given arguments. Returns structured JSON output.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
arguments | string | Yes | — | Command-line arguments (e.g. "--help") |
timeout_seconds | integer | No | 600 | Maximum execution time in seconds |
{
"raw": "smbmap output will appear here"
}
Here are example prompts you can use with Claude (or any MCP client) when this tool is connected:
docker-compose up -d
docker run -i --rm hackerdogs/smbmap-mcp:latest
docker run -d -p 8211:8211 \
-e MCP_TRANSPORT=streamable-http \
-e MCP_PORT=8211 \
hackerdogs/smbmap-mcp:latest
Add to your Claude Desktop or Cursor MCP config:
{
"mcpServers": {
"smbmap-mcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT", "hackerdogs/smbmap-mcp:latest"],
"env": {
"MCP_TRANSPORT": "stdio"
}
}
}
}
First, start the server using Docker Compose or docker run with HTTP mode (see Deploy above), then point your MCP client at the running server:
{
"mcpServers": {
"smbmap-mcp": {
"url": "http://localhost:8211/mcp"
}
}
}
When to use HTTP mode: HTTP mode is ideal for shared/remote deployments, multi-user setups, and Hackerdogs scheduled prompts. The server runs as a long-lived process and accepts connections from multiple MCP clients concurrently.
| Variable | Default | Description |
|---|---|---|
MCP_TRANSPORT | stdio | Transport mode: stdio or streamable-http |
MCP_PORT | 8211 | HTTP port (only used with streamable-http) |
The fastest way to get started is through Hackerdogs:
Give it a couple of minutes to go live. Then start querying by asking Hackerdogs to use the tool explicitly (e.g. "Use naabu to scan example.com"). If you don't specify, Hackerdogs will automatically choose the best tool for the job — it may choose this one on its own.
Want to contribute or chat with the team? Join our Discord.
docker build -t hackerdogs/smbmap-mcp:latest .
./test.sh
1. Start the server in HTTP mode:
docker run -d --rm --name smbmap-mcp-test -p 8211:8211 \
-e MCP_TRANSPORT=streamable-http \
hackerdogs/smbmap-mcp:latest
2. Initialize the MCP session:
SESSION_ID=$(curl -s -D - -X POST http://localhost:8211/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}}}' \
2>&1 | grep -i mcp-session-id | awk '{print $2}' | tr -d '\r\n')
curl -s -X POST http://localhost:8211/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-session-id: $SESSION_ID" \
-d '{"jsonrpc":"2.0","method":"notifications/initialized"}'
3. Call a tool:
curl -s -X POST http://localhost:8211/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-session-id: $SESSION_ID" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"run_smbmap","arguments":{"arguments":"--help"}}}'
4. Clean up:
docker stop smbmap-mcp-test
You can run the smbmap CLI in the same container by overriding the entrypoint to enumerate SMB shares without starting the MCP server.
List shares:
docker run -i --rm --entrypoint smbmap hackerdogs/smbmap-mcp:latest -H 192.168.1.1 -u user -p pass
Show help:
docker run -i --rm --entrypoint smbmap hackerdogs/smbmap-mcp:latest -h
Content type
Image
Digest
sha256:c58d96606…
Size
138.6 MB
Last updated
3 months ago
docker pull hackerdogs/smbmap-mcp