MCP server that connects AI assistants to Seq query log events, run SQL against the event stream, manage alerts, signals, dashboards, and retention policies via the Model Context Protocol.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"seq": {
"env": {
"SEQ_URL": "http://localhost:5341",
"SEQ_API_KEY": "your-seq-api-key"
},
"args": [
"run",
"--project",
"/absolute/path/to/SeqMcpServer"
],
"command": "dotnet"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that connects AI agents to Seq — a centralized structured logging platform. This server enables LLMs to search log events, execute SQL queries, inspect dashboards, alerts, signals, and more through natural language interactions.
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 developer-tools / analytics
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP Security Weekly
Get CVE alerts and security updates for SeqMcpServer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that connects AI agents to Seq — a centralized structured logging platform. This server enables LLMs to search log events, execute SQL queries, inspect dashboards, alerts, signals, and more through natural language interactions.
Each SeqMcpServer release is built against a specific version of the Seq.Api SDK, which determines the minimum required Seq server version. Choose the MCP server version that matches your Seq installation.
| SeqMcpServer | Seq.Api SDK | Seq API | Min. Seq Server | .NET | Status |
|---|---|---|---|---|---|
| 2.0.1 | 2025.2.2 | v11 | 2025.1+ | 9.0 | Current |
| 2.0.0 | 2025.2.2 | v11 | 2025.1+ | 9.0 | Maintenance |
| 1.1.0 | 2024.3.0 | v10 | 2024.x and earlier¹ | 9.0 | Maintenance |
| 1.0.0 | 2024.3.0 | v10 | 2024.x and earlier¹ | 9.0 | Maintenance |
¹ The Seq.Api SDK version number follows the Seq server release cycle. SDK 2024.3.0 is tested against Seq 2024.x. Older Seq versions supporting API v10 may also work but are not officially tested.
Tip: Not sure which version to use? If your Seq server is 2025.1 or newer, use SeqMcpServer 2.0.0. For Seq 2024.x or earlier, use SeqMcpServer 1.1.0. The version compatibility table will be updated as new releases target newer Seq API versions.
git clone <repository-url>
cd src/SeqMcpServer
dotnet build
The server communicates over stdio and is configured entirely through environment variables.
Add the following to your VS Code MCP settings (.vscode/mcp.json or user settings):
{
"servers": {
"seq": {
"type": "stdio",
"command": "dotnet",
"args": ["run", "--project"
... [View full README on GitHub](https://github.com/Finfinder/SeqMcpServer#readme)