AI-powered Windows Event Log analyzer that learns from your feedback. Uses Claude AI with RAG to detect suspicious activity, improve accuracy over time, and share learnings across your team. CLI and MCP server interfaces.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"eventsight": {
"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.
AI-powered Windows Event Log analyzer that learns from analyst feedback.
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
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
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 EventSight and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
AI-powered Windows Event Log analyzer that learns from analyst feedback.
This repository contains two related projects:
EventSight/
├── Eventsight/ # Standalone CLI tool
│ └── data/learnings/ # Shared learnings database
└── Eventsight-MCP/ # MCP server for Claude Code integration
└── .mcp.json # MCP configuration
| Eventsight | Eventsight-MCP | |
|---|---|---|
| Interface | Command-line (CLI) | MCP Server (Claude Code) |
| RAG Type | Standard RAG | Agentic RAG |
| Use Case | Direct analysis & reporting | Interactive analysis with Claude |
| Feedback | Manual commands | Natural language via Claude |
Both projects share the same learnings database, meaning:
The shared data lives in Eventsight/data/learnings/:
learnings.db - Analyst learnings, correlation rules, and analysis historyevents.db - Stored events from analyses (indexed by Event ID, timestamp, provider)embeddings.npy - 384-dimensional vector embeddings for semantic searchevent_embeddings.npy - Event embeddings for semantic event searchThe standalone command-line tool for Windows Event Log analysis.
Features:
Quick Start:
cd Eventsight
uv sync
uv run eventsight evaluate Security.evtx --event-ids 4624,4688
See Eventsight/README.md for full documentation.
MCP server that brings EventSight capabilities into Claude Code with Agentic RAG.
Features:
Quick Start:
# From the Eventsight-MCP directory with Claude Code
cd Eventsight-MCP
# Then use tools like:
# - evaluate_evtx to analyze EVTX files
# - feedback to process analyst input using Agentic RAG
# - search_stored_events to find specific activity
# - export_learnings_package to share learnings
See Eventsight-MCP/README.md for full documentation.
Direct vector similarity search for learning retrieval:
LLM-driven tool selection for intelligent processing:
MIT