- Home
- MCP servers
- MalwareAnalyzerMCP Server
MalwareAnalyzerMCP Server
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-abdessamad-elamrani_malwareanalyzermcp": {
"command": "node",
"args": [
"/path/to/MalwareAnalysisMCP/index.js"
]
}
}
}MalwareAnalyzerMCP is a JavaScript MCP server designed to execute terminal commands for malware analysis and expose specialized analysis helpers. It runs locally, manages processes gracefully, and can be integrated with Claude Desktop to enable quick command-based workflows for security researchers and analysts.
How to use
You run the server locally and connect your MCP client to start issuing commands. Use the standard shell_command tool to start a new process, read its output, and determine if it is still running. You can also invoke specialized malware analysis helpers such as file, strings, hexdump, objdump, and xxd to inspect targets.
How to install
Prerequisites: ensure you have Node.js version 18 or higher installed on your system.
Install the server dependencies.
Run the server directly or via npm scripts.
Available tools
shell_command
Executes a terminal command and returns its process ID, output, and blocked status.
read_output
Reads output from a running or completed process.
file
Analyze a file and determine its type.
strings
Extract printable strings from a file.
hexdump
Display file contents in hexadecimal format.
objdump
Display information from object files.
xxd
Create a hexdump with ASCII representation.