MCP Server for TheHive
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"thehive": {
"env": {
"THEHIVE_URL": "https://your-thehive-instance.com:9000/api",
"THEHIVE_API_TOKEN": "your-api-token-here"
},
"command": "/path/to/mcp-server-thehive"
}
}
}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 AI models and automation tools with access to TheHive incident response 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.
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.
mcpki-server is the backend infrastructure for https://www.mcpki.org, enabling secure public key management and autonomous certificate handling for large language models (LLMs).
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Thehive 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 AI models and automation tools with access to TheHive incident response platform.
This server acts as a bridge between MCP clients (like AI assistants) and TheHive, allowing them to:
get_thehive_alerts - Retrieve a list of alerts from TheHive
limit parameter (default: 100)get_thehive_alert_by_id - Get detailed information about a specific alert
alert_id parameterget_thehive_cases - Retrieve a list of cases from TheHive
limit parameter (default: 100)get_thehive_case_by_id - Get detailed information about a specific case
case_id parameterpromote_alert_to_case - Promote an alert to a case
alert_id parametercreate_thehive_case - Create a new case in TheHive
title and description parametersseverity, tags, tlp, pap, status, assignee, case_template, start_dateYou can download pre-compiled binaries for various operating systems from the GitHub Releases page. Download the appropriate binary for your system, make it executable, and place it in your desired location.
git clone <repository-url>
cd mcp-server-thehive
cargo build --release
The server requires the following environment variables:
THEHIVE_URL - TheHive API base URL (default: http://localhost:9000/api)THEHIVE_API_TOKEN - TheHive API token (required)VERIFY_SSL - Whether to verify SSL certificates (default: false)RUST_LOG - Logging level (optional, e.g., debug, info)Create a .env file in the project root:
THEHIVE_URL=https://your-thehive-instance.com/api
THEHIVE_API_TOKEN=your-api-token-here
VERIFY_SSL=true
RUST_LOG=info
THEHIVE_API_TOKEN# Using cargo
cargo run
# Using the built binary
./target/release/mcp-server-thehive
The server communicates over stdio using the MCP protocol. Configure your MCP client to use this server:
{
"mcpServers": {
"thehive": {
"command": "/path/to/mcp-server-thehive",
"env": {
"THEHIVE_URL": "https://your-thehive-instance.com:9000/api",
"THEHIVE_API_TOKEN": "your-api-token-here"
}
}
}
}
{
"method": "tools/call",
"params": {
"name": "get_thehive_alerts",
"arguments": {
"limit": 10
}
}
}
{
"method": "tools/call",
"params": {
"name": "get_thehive_alert_by_id",
"arguments": {
"alert_id": "~123456"
}
}
}
{
"method": "tools/call",
"params": {
"name": "promote_alert_to_case",
"arguments": {
"alert_id": "~123456"
}
}
}
{
"method": "tools/call",
"params": {
"name": "create_thehive_case",
"arguments": {
"title": "Poten
... [View full README on GitHub](https://github.com/gbrigandi/mcp-server-thehive#readme)