A Model Context Protocol (MCP) server that integrates with the MISP (Malware Information Sharing Platform) to provide threat intelligence capabilities to Large Language Models.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"misp-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that integrates with the MISP (Malware Information Sharing Platform) to provide threat intelligence capabilities to Large Language Models.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / security
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for MISP MCP SERVER and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that integrates with the MISP (Malware Information Sharing Platform) to provide threat intelligence capabilities to Large Language Models.
Clone this repository:
git clone https://github.com/yourusername/misp-mcp-server.git
cd misp-mcp-server
Create a virtual environment and install dependencies:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
pip install "mcp[cli]" pymisp
Set the following environment variables to connect to your MISP instance:
MISP_URL - URL of your MISP instance (e.g., "https://misp.example.com")MISP_API_KEY - Your MISP API keyMISP_VERIFY_SSL - Whether to verify SSL certificates (True/False)python misp_server.py
mcp dev misp_server.py
Edit your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the MISP MCP server configuration:
{
"mcpServers": {
"misp-intelligence": {
"command": "python",
"args": ["/path/to/misp_server.py"],
"env": {
"MISP_URL": "https://your-misp-instance.com",
"MISP_API_KEY": "your-api-key-here",
"MISP_VERIFY_SSL": "True"
}
}
}
}
Alternatively, use the MCP CLI:
mcp install misp_server.py --name "MISP Threat Intelligence" -v MISP_URL=https://your-misp-instance.com -v MISP_API_KEY=your-api-key
Get the latest Mac-related malware samples from MISP.
Parameters:
days (default: 30): Number of days to look backlimit (default: 10): Maximum number of results to returnGet the latest malware samples for a specific platform from MISP.
Parameters:
platform: Platform to search for (windows, macos, linux, android, ios, iot)days (default: 30): Number of days to look backlimit (default: 10): Maximum number of results to returnPerform advanced searches in MISP.
Parameters:
query_type: Type of search (attribute_type, tag, threatactor, tlp)query_value: Value to search forplatform (optional): Platform filter (windows, macos, linux, android, ios, iot)days (default: 30): Number of days to look backlimit (default: 10): Maximum number of results to returnSubmit a new Indicator of Compromise (IoC) to MISP.
Parameters:
ioc_value: The actual IoC value (e.g., hash, URL, IP)ioc_type: Type of IoC (e.g., md5, sha256, url, ip-dst, filename)event_info: Brief description of the eventcategory (default: "Artifacts dropped"): Category of the attributeplatform (optional): Platform affected (windows, macos, linux, android, ios, iot)tlp (default: "amber"): Traffic Light Protocol level (white, green, amber, red)comment (optional): Optional comment for the IoCGenerate a comprehensive threat intelligence report based on MISP data.
Parameters: