Velociraptor Forensic MCP Server
This MCP server connects Claude Desktop to a Velociraptor instance and local forensic tools. It enables remote endpoint investigation and local evidence analysis through natural language commands.
README
🦖 Velociraptor Forensic MCP Server
Turn Claude Desktop into a DFIR workstation.
A unified Model Context Protocol (MCP) server that connects Claude Desktop to your Velociraptor instance AND local forensic tools. Remote endpoint investigation + local evidence analysis in one server. Docker deployment for Velociraptor included.
What This Does
Instead of switching between the Velociraptor GUI, terminal VQL sessions, and forensic scripts, you talk to Claude and it runs them for you. Ask Claude to:
- "Look up workstation-01 and tell me when it was last seen" → Queries Velociraptor for client info
- "Collect the user list from that endpoint" → Starts a
Linux.Sys.Usersartifact collection and retrieves results - "Hash all files in /evidence/malware-samples/" → Recursively SHA-256 hashes a local directory
- "Check syslog for any mentions of that binary" → Scans system logs with keyword search
- "Cross-reference the file metadata with log entries" → Correlates timestamps, hashes, and log hits into a forensic report
- "Run a VQL query to show all running processes on the endpoint" → Executes custom VQL directly
All results come back in the chat. No copy-pasting. No tab switching. Full forensic chain from endpoint to evidence.
🛠️ Integrated Tools (12)
Remote — Velociraptor (vr_*)
| Tool | Description |
|---|---|
| vr_authenticate | Test gRPC connection to Velociraptor |
| vr_get_agent_info | Look up a client by hostname → client_id, OS, agent version, last seen |
| vr_run_vql | Execute arbitrary VQL queries on the server |
| vr_list_artifacts | List all available client artifacts with descriptions |
| vr_artifact_details | Get full specs for a specific artifact |
| vr_collect_artifact | Start artifact collection on a remote endpoint (returns flow_id) |
| vr_get_collection_results | Poll and retrieve completed collection results (with retry logic) |
Local Forensic (local_*)
| Tool | Description |
|---|---|
| local_file_metadata | SHA-256, size, timestamps for a file (sandboxed to SAFE_BASE) |
| local_hash_directory | Recursively hash every file in a directory |
| local_scan_syslog | Search Linux syslog or macOS unified log by keyword |
| local_correlate | Cross-reference file metadata with log entries |
| local_forensic_report | Generate structured forensic report combining file + log data |
Key Features
- Dual-mode: Either toolkit works independently — deploy with just Velociraptor, just local tools, or both
- Path sandboxing: All local_* tools validate paths stay within SAFE_BASE
- Async flow polling: Collection results auto-retry until the flow completes
- Multi-source artifacts: Handles artifacts with multiple data sources automatically
- Tool filtering: Disable individual tools via DISABLED_TOOLS env var
- Read-only mode: Block write operations (artifact collection) with READ_ONLY=true
🚀 Quick Start
Prerequisites
- Docker & Docker Compose
- Python 3.11+
- Claude Desktop
1. Deploy Velociraptor (Docker)
cd docker/
docker compose up -d
# Wait ~30 seconds for initialization
docker logs velociraptor --tail 10
# Should see: "Starting gRPC API server" and "Frontend is ready"
Default GUI: https://localhost:9889 (admin/admin — change this!)
2. Generate API Key
chmod +x generate-api-key.sh
./generate-api-key.sh
This creates api.config.yaml with the gRPC credentials and automatically fixes the connection string for host access.
3. Install the MCP Server
cd ../
python3.11 -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
4. Configure
cp .env.example .env
# Edit .env — set your paths:
# VELOCIRAPTOR_API_KEY=/path/to/api.config.yaml
# SAFE_BASE=/home/youruser/evidence
5. Configure Claude Desktop
Add to ~/.config/Claude/claude_desktop_config.json (Linux) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"velociraptor-forensic": {
"command": "/path/to/velociraptor-forensic-mcp/.venv/bin/python",
"args": ["-m", "velociraptor_forensic_mcp"],
"cwd": "/path/to/velociraptor-forensic-mcp",
"env": {
"VELOCIRAPTOR_API_KEY": "/path/to/api.config.yaml",
"VELOCIRAPTOR_SSL_VERIFY": "false",
"SAFE_BASE": "/home/youruser/evidence",
"LOG_LEVEL": "INFO"
}
}
}
}
6. Restart Claude Desktop
The tools will appear automatically. Start investigating.
🔑 Environment Variables
| Variable | Description | Default | Required |
|---|---|---|---|
VELOCIRAPTOR_API_KEY |
Path to api.config.yaml | — | For remote tools |
VELOCIRAPTOR_SSL_VERIFY |
Verify gRPC TLS certs | true |
|
VELOCIRAPTOR_TIMEOUT |
gRPC timeout (seconds) | 30 |
|
SAFE_BASE |
Root directory for local forensic tools | — | For local tools |
MCP_SERVER_HOST |
Bind host for SSE transport | 127.0.0.1 |
|
MCP_SERVER_PORT |
Bind port for SSE transport | 8000 |
|
LOG_LEVEL |
DEBUG/INFO/WARNING/ERROR | INFO |
|
DISABLED_TOOLS |
Comma-separated tool names to disable | — | |
READ_ONLY |
Block artifact collection | false |
🐳 Docker Velociraptor Setup
The docker/ folder contains everything to run Velociraptor in Docker with ports mapped to avoid common conflicts:
| Host Port | Service | Purpose |
|---|---|---|
| 9000 | Client frontend | Velociraptor agent check-in |
| 9001 | gRPC API | MCP server connects here |
| 9889 | Web GUI | Your browser |
Enrolling a Test Client
To enroll the machine running Docker as a Velociraptor client:
cd docker/
# Copy client binary and config
docker cp velociraptor:/velociraptor/clients/linux/velociraptor_client_repacked ./velociraptor_client
chmod +x velociraptor_client
docker exec velociraptor cat client.config.yaml > client.config.yaml
sed -i 's|https://VelociraptorServer:8000/|https://localhost:9000/|' client.config.yaml
# Run the client (Ctrl+C to stop)
sudo ./velociraptor_client --config client.config.yaml client -v
💡 Usage Examples
Full Endpoint Investigation
"Look up the endpoint pop-os, collect its user list, and check syslog for any suspicious entries"
Claude chains: vr_get_agent_info → vr_collect_artifact → vr_get_collection_results → local_scan_syslog
File Integrity Check
"Hash all files in /evidence/case-2024/ and check if any appear in the system logs"
Claude chains: local_hash_directory → local_correlate for each suspicious file
Custom VQL Investigation
"Run a VQL query to show me all listening network connections on client C.1393a876d1c48287"
Claude uses vr_collect_artifact with Linux.Network.Netstat or writes custom VQL via vr_run_vql
Quick Triage
"Scan syslog for 'authentication failure' and give me a summary"
Claude uses local_scan_syslog and synthesizes the results
📁 Project Structure
velociraptor-forensic-mcp/
├── velociraptor_forensic_mcp/
│ ├── __init__.py # Package metadata
│ ├── __main__.py # CLI entry point
│ ├── config.py # Dataclass configs (Velociraptor, Forensic, Server)
│ ├── exceptions.py # Custom exception hierarchy
│ ├── vr_client.py # Velociraptor gRPC client
│ ├── forensic_helpers.py # Local forensic functions
│ └── server.py # FastMCP server with all tools/prompts/resources
├── docker/
│ ├── docker-compose.yaml # Velociraptor Docker deployment
│ └── generate-api-key.sh # API key generation script
├── tests/
│ └── test_forensic.py # Unit tests
├── pyproject.toml # Python packaging
├── .env.example # Configuration template
└── README.md
🔒 Security
- API key protection:
api.config.yamlcontains a private key —chmod 600it - Path sandboxing: All local tools are restricted to the SAFE_BASE directory
- Least privilege: Generate API keys with
--role api,investigatornotadministrator - Tool filtering: Disable tools you don't need via DISABLED_TOOLS
- Read-only mode: Set
READ_ONLY=trueto prevent artifact collection - Never commit
api.config.yamlor.envto version control
🧪 Running Tests
source .venv/bin/activate
pytest -v
🏗️ Architecture
This server combines two open-source projects into a unified MCP interface:
- Remote tools adapted from socfortress/velociraptor-mcp-server (gRPC operations)
- Local tools adapted from axdithyaxo/mcp-forensic-toolkit (sandboxed file analysis)
Both toolkits activate independently based on which environment variables are set. You can run Velociraptor-only, local-only, or both together.
⚠️ Legal Disclaimer
This tool is intended for authorized digital forensics and incident response only. Always ensure you have proper authorization before collecting artifacts from endpoints. Unauthorized access to computer systems is illegal.
🤝 Contributing
Pull requests welcome. To add a new tool:
- Add the function in
forensic_helpers.py(local) orvr_client.py(remote) - Create a Pydantic input model in
server.py - Register the tool in
_register_forensic_tools()or_register_velociraptor_tools() - Add tests
- Submit a PR
📬 Contact
- Discord: sgtwolf787
- GitHub: @Hackerobi
White hat or no hat 🎩
Built with Claude. Tested on live Velociraptor deployment. Stay legal.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。