MCP Defender (mcp-msdefenderkql)
An MCP server for Microsoft Defender Advanced Hunting that enables AI assistants to investigate security events using natural language by translating queries to KQL and executing them against Defender.
README
MCP Defender
mcp-name: io.github.trickyfalcon/mcp-msdefenderkql
An MCP (Model Context Protocol) server for Microsoft Defender Advanced Hunting. Enables AI assistants to investigate security events using natural language by translating queries to KQL and executing them against Defender.
How It Works
User: "Show me suspicious PowerShell activity in the last hour"
↓
AI translates to KQL using schema knowledge
↓
MCP executes query against Defender API
↓
AI interprets and explains the results
Features
- Advanced Hunting: Execute KQL queries against Defender's Advanced Hunting API
- Dynamic Schema Discovery: Fetch available tables and columns directly from your Defender instance
- Natural Language Security Investigations: Let AI translate your questions into KQL
- Certificate Authentication: Secure authentication using Azure AD certificates (recommended)
Prerequisites
- Python 3.10+
- Azure AD App Registration with WindowsDefenderATP permission:
AdvancedQuery.Read.All- Run advanced queries
Installation
From PyPI (Recommended)
pip install mcp-msdefenderkql
From Source
# Clone the repository
git clone https://github.com/trickyfalcon/mcp-defender.git
cd mcp-defender
# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
pip install -e ".[dev]"
Configuration
- Copy
.env.exampleto.env - Fill in your Azure AD credentials:
AZURE_TENANT_ID=your-tenant-id
AZURE_CLIENT_ID=your-client-id
# Option 1: Certificate authentication (recommended)
AZURE_CLIENT_CERTIFICATE_PATH=/path/to/combined.pem
# Option 2: Client secret authentication
# AZURE_CLIENT_SECRET=your-client-secret
Certificate Setup
For certificate authentication, combine your private key and certificate:
cat private.key cert.pem > combined.pem
Usage
Running the Server
mcp-msdefenderkql
Testing with MCP Inspector
npx @modelcontextprotocol/inspector mcp-msdefenderkql
Claude Desktop Configuration
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"defender": {
"command": "/path/to/mcp-defender/.venv/bin/python",
"args": ["-m", "mcp_defender.server"],
"env": {
"PYTHONPATH": "/path/to/mcp-defender/src",
"AZURE_TENANT_ID": "your-tenant-id",
"AZURE_CLIENT_ID": "your-client-id",
"AZURE_CLIENT_CERTIFICATE_PATH": "/path/to/combined.pem"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
run_hunting_query |
Execute KQL queries against Advanced Hunting |
get_hunting_schema |
Get available tables and columns dynamically |
Example Natural Language Queries
Once connected to Claude, you can ask:
- "Show me any suspicious PowerShell activity in the last hour"
- "Find devices with failed login attempts"
- "What processes are making network connections to external IPs?"
- "List all devices that haven't checked in for 7 days"
Example KQL Queries
// Find failed logon attempts
DeviceLogonEvents
| where ActionType == "LogonFailed"
| where Timestamp > ago(24h)
| summarize FailedAttempts = count() by AccountName, DeviceName
| top 10 by FailedAttempts
// Detect suspicious PowerShell
DeviceProcessEvents
| where FileName in~ ("powershell.exe", "pwsh.exe")
| where ProcessCommandLine has_any ("encodedcommand", "bypass", "hidden", "downloadstring")
| project Timestamp, DeviceName, AccountName, ProcessCommandLine
// Network connections to external IPs
DeviceNetworkEvents
| where RemoteIPType == "Public"
| where Timestamp > ago(1h)
| summarize ConnectionCount = count() by DeviceName, RemoteIP
| top 20 by ConnectionCount
Development
# Run tests
pytest
# Lint code
ruff check .
# Type check
mypy src
# Security scan
bandit -r src
API Reference
This server uses the WindowsDefenderATP API:
- Endpoint:
https://api.securitycenter.microsoft.com - Advanced Hunting:
POST /api/advancedqueries/run
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.