seq-mcp-server CLAUDE.md

seq-mcp-server CLAUDE.md is an instructions file for coding agents from willibrandon/seq-mcp-server. It costs 753 tokens per session, scanned A, original, MIT.

Repository instructions for developing and running Seq MCP Server, a program that connects coding agents to Seq log data through the Model Context Protocol.

In plain words
What is it for?
Use them when preparing the development environment, starting or stopping the local Seq service, running the server, building its container, or running filtered tests.
Why use it?
They give contributors the commands and required settings for setting up Seq, building the .NET project, running it, testing it, measuring coverage, and using Docker.

Instructions file

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/willibrandon/seq-mcp-server/claude-md
Clone the repo
git clone --depth 1 https://github.com/willibrandon/seq-mcp-server

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for seq-mcp-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/willibrandon/seq-mcp-server/claude-md.svg)](https://agentmods.dev/instructions/willibrandon/seq-mcp-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/willibrandon/seq-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/willibrandon/seq-mcp-server/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 753 This file is loaded in full into every session.
When invoked 753 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00753 $0.00753
Opus 5 $0.00377 $0.00377
Sonnet 5 $0.00151 $0.00151
Haiku 4.5 $0.00075 $0.00075

Measured 3d ago against content hash facf328b1c4a, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

seq-mcp-server CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 109 lines

How it starts

The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Commands

Development Environment Setup

# Setup development environment (starts Seq container, creates API key)
# PowerShell
./scripts/setup-dev.ps1

# Bash
./scripts/setup-dev.sh

# Teardown development environment
# PowerShell
./scripts/teardown-dev.ps1

# Bash
./scripts/teardown-dev.sh

Build and Run

# Restore dependencies
dotnet restore

# Build the project
dotnet build

# Set environment variables (required)
export SEQ_SERVER_URL="http://localhost:5341"
export SEQ_API_KEY="your-api-key"

# Run the application (MCP server mode)
dotnet run --project src/SeqMcpServer

# Run with Docker Compose (includes Seq server)
docker compose up

Testing

# Run all tests
dotnet test

# Run tests with verbose output
dotnet test --logger "console;verbosity=detailed"

# Run a specific test class
dotnet test --filter "FullyQualifiedName~FileCredentialStoreTests"

# Run tests with code coverage
dotnet test --collect:"XPlat Code Coverage"

Docker

# Build Docker image
docker build -t seq-mcp-server .

# Run with Docker Compose
docker compose up -d

# View logs
docker compose logs -f

Architecture

Application Mode

The application runs as a Model Context Protocol (MCP) server using stdio transport, exposing Seq tools to MCP clients.

Core Components

MCP Tools (src/SeqMcpServer/Mcp/SeqTools.cs):

  • SeqSearch: Search Seq events with filters (count, filter, columns, render)
  • SeqStream: Stream live events from Seq (5-second timeout)
  • SignalList: List available signals (read-only)

Services:

  • EnvironmentCredentialStore (src/SeqMcpServer/Services/EnvironmentCredentialStore.cs): Manages API keys from environment variables
  • SeqConnectionFactory (src/SeqMcpServer/Services/SeqConnectionFactory.cs): Creates Seq API connections per workspace

Read the full file on GitHub · 109 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 109 lines · 753 tokens per session scan A facf328b1c4a

Subscribe to this mod's changes

seq-mcp-server CLAUDE.md is an instructions file published in the GitHub repository willibrandon/seq-mcp-server (22 stars, last pushed 3mo ago), licensed MIT. It adds 753 tokens to every session, about $0.0038 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.