MCP Server for MISP
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"misp": {
"env": {
"MISP_URL": "https://misp.example.com",
"MISP_API_KEY": "your-api-key"
},
"command": "/path/to/mcp-server-misp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that provides access to MISP threat intelligence platform.
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.
Click any tool to inspect its schema.
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 security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Misp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides access to MISP threat intelligence platform.
This server bridges MCP clients and MISP, enabling:
| Tool | Description |
|---|---|
search_misp_ioc | Search for an IOC (IP, domain, hash, URL, email) |
get_misp_event_context | Get full event details including tags and galaxies |
check_misp_warninglist | Check if a value is on warninglists (false positive detection) |
get_misp_sightings | Get sighting history for an IOC |
get_misp_iocs_by_type | Extract IOCs by attribute type (ip-dst, domain, sha256, etc.) |
search_misp_by_tag | Search attributes by tag (tlp:red, malware:emotet, etc.) |
get_misp_recent_iocs | Get IOCs added within a time window |
get_misp_threat_actor_iocs | Get IOCs attributed to a threat actor |
list_misp_galaxies | List available MISP galaxies |
Download from GitHub Releases.
git clone https://github.com/gbrigandi/mcp-server-misp
cd mcp-server-misp
cargo build --release
For HTTP transport support:
cargo build --release --features http
Environment variables:
| Variable | Description | Default |
|---|---|---|
MISP_URL | MISP API base URL | required |
MISP_API_KEY | MISP API key | required |
MISP_VERIFY_SSL | Verify SSL certificates | true |
RUST_LOG | Logging level | info |
Example .env:
MISP_URL=https://misp.example.com
MISP_API_KEY=your-api-key
MISP_VERIFY_SSL=true
./mcp-server-misp
./mcp-server-misp --transport http --host 127.0.0.1 --port 8080
{
"mcpServers": {
"misp": {
"command": "/path/to/mcp-server-misp",
"env": {
"MISP_URL": "https://misp.example.com",
"MISP_API_KEY": "your-api-key"
}
}
}
}
cargo test
cargo test --features http --test mcp_http_test
MIT