The Sleuth Kit Mcp Server
@heejung0
About The Sleuth Kit Mcp Server
The Sleuth Kit MCP Server는 Sleuth Kit CLI 도구(mmstat, mmls, fls, ifind, icat)를 Model Context Protocol (MCP) 서버 형태로 노출합니다. 이를 통해 Cursor, Claude Desktop 등 MCP 클라이언트에서 파일시스템 이미지(E01, RAW, VMDK 등) 를 분석하고 파일을 추출할 수 있습니다.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"sleuthkit-MCP": {
"command": "/path/to/.venv/Scripts/python",
"args": [
"/path/to/sleuthkit_mcp_server.py"
],
"env": {
"PATH": "/path/to/sleuthkit/bin"
}
}
}
}Tools
8Sleuth Kit 바이너리 설치 상태 점검
file 명령어와 mmstat으로 디스크 이미지 파일 정보 확인
mmls로 디스크 파티션 정보 분석
ifind로 메인 파티션 오프셋을 기준으로 직접 경로 탐색을 통해 해당 폴더의 inode 번호 확인
fls로 폴더의 내용 확인
icat으로 inode 번호를 활용한 파일 추출
icat으로 원본 경로 구조를 유지하며 inode 번호를 활용한 파일 추출
istat으로 디스크 이미지에서 inode를 기반으로 해당 파일들의 메타 정보 확인
Overview
What is The Sleuth Kit MCP Server?
The Sleuth Kit MCP Server exposes Sleuth Kit CLI tools (mmstat, mmls, fls, ifind, icat) as a Model Context Protocol (MCP) server. It allows MCP clients (e.g., Cursor, Claude Desktop) to analyze filesystem images (E01, RAW, VMDK) and extract files.
How to use The Sleuth Kit MCP Server?
Clone the repository, create a Python virtual environment, install dependencies, and install Sleuth Kit separately. Then configure your MCP client with a JSON entry specifying the Python interpreter path and the server script path, plus necessary environment variables (e.g., PATH). The server provides tools such as sleuthkit_healthcheck, disk_info, disk_partition_info, search_inode_by_path, files_in_directory, extract_files_by_inode, extract_directory_tree_by_inode, and istat_metadata.
Key features of The Sleuth Kit MCP Server
- Exposes multiple Sleuth Kit tools as MCP tools.
- Supports E01, RAW, VMDK disk image formats.
- Allows inode‑based file and directory extraction.
- Provides health check for Sleuth Kit installation.
- Works with any MCP‑compatible client.
Use cases of The Sleuth Kit MCP Server
- Analyze disk partitions and file system metadata.
- List files and directories inside a disk image.
- Extract specific files using inode numbers.
- Recover files while preserving original directory structure.
- Verify Sleuth Kit installation status.
FAQ from The Sleuth Kit MCP Server
What is the Sleuth Kit?
The Sleuth Kit is a collection of command‑line forensic tools for analyzing disk images and recovering files.
What are the runtime requirements?
Python 3, a virtual environment, Sleuth Kit binaries installed on the system, and (on Windows) the python-magic-bin package.
Where does the data reside?
All analysis is performed on locally provided disk image files; no remote data is accessed.
How is the server transported?
The server communicates via standard input/output (stdio) as defined by the MCP protocol.
Are there any authentication or configuration limits?
No authentication is required. The server depends on a local Sleuth Kit installation and correct PATH environment variable setup.
More Developer Tools MCP servers
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
Hello World MCP Server (Reference Extension)
anthropicsDesktop Extensions: One-click local MCP server installation in desktop apps
test
harlancA simple,high performance and secure live media server in pure Rust (RTMP[cluster]/RTSP/WebRTC[whip/whep]/HTTP-FLV/HLS).🦀
FastAPI-MCP
tadata-orgExpose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth!
MCP Containers
metorialConnect any AI model to 1200+ integrations (MCP, CLI, API)
Comments