An MCP server that provides read-only access to MISP threat intelligence data.
- Event search - Find threat intelligence events by IOC values, tags, dates, organisations
- Attribute search - Search individual indicators of compromise across all events
- Object search - Find grouped attributes (file objects, network connections, etc.)
- Event index - Lightweight event metadata browsing
- Tags & Taxonomies - Search tags and browse taxonomy vocabularies (TLP, kill chain, etc.)
- Galaxies - Search threat actors, malware, ATT&CK techniques, and other knowledge bases
- Feeds - Browse configured threat intelligence feeds
All access is read-only - no data modification is possible through this server.
pip install misp-mcpOr install from source:
cd misp-mcp
pip install -e .Set the following environment variables:
| Variable | Required | Description |
|---|---|---|
MISP_URL |
Yes | URL of your MISP instance (e.g. https://misp.example.com) |
MISP_API_KEY |
Yes | Your MISP API authentication key |
MISP_VERIFYCERT |
No | Verify TLS certificates (default: true) |
Add to your MCP configuration:
{
"mcpServers": {
"misp": {
"command": "misp-mcp",
"env": {
"MISP_URL": "https://misp.example.com",
"MISP_API_KEY": "your-api-key-here"
}
}
}
}export MISP_URL="https://misp.example.com"
export MISP_API_KEY="your-api-key"
misp-mcpsearch_events- Search events by IOC values, tags, dates, organisationssearch_attributes- Search individual attributes/indicatorssearch_objects- Search MISP objectssearch_event_index- Lightweight event metadata searchget_event- Get full event by IDget_attribute- Get attribute by IDget_object- Get object by ID
search_tags- Search tags by namelist_taxonomies- List all taxonomy vocabulariesget_taxonomy- Get taxonomy details and entries
search_galaxies- Search galaxies (threat actors, malware, ATT&CK, etc.)get_galaxy- Get galaxy with clusterssearch_galaxy_clusters- Search within a specific galaxy
search_feeds- Search/list configured threat intelligence feeds
AGPL-3.0-or-later - same as MISP.
Copyright (C) 2026 Andras Iklody