Wraps smbmap for SMB enumeration directly in Claude. You get tools to connect to Windows shares, list drives and directories, check signing status, and pull OS version info. Beyond reconnaissance, it exposes file operations like download, upload, and delete, plus remote command execution and admin rights checks. Reach for this when you're auditing network shares, investigating SMB configurations, or automating file transfers across Windows environments without leaving your AI workflow. The full smbmap toolkit becomes available as structured MCP tools instead of parsing command line output.
MCP server exposing smbmap SMB enumeration functionality.
pip install mcp-smbmap
from mcp_smbmap import mcp
# Run the MCP server
mcp.run()
connect - Connect to an SMB hostlist_shares - List all shares on the target hostlist_drives - List all drives on the target hostlist_path - List contents of a share pathget_version - Get OS version of the remote hostcheck_signing - Check SMB signing statusexec_command - Execute a command on the remote hostdownload_file - Download a file from the remote systemupload_file - Upload a file to the remote systemdelete_file - Delete a remote filecheck_admin - Check if user has admin rightsdisconnect - Disconnect from an SMB hostgit clone https://github.com/daedalus/mcp-smbmap.git
cd mcp-smbmap
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/
mcp-name: io.github.daedalus/mcp-smbmap