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.
npx agentmods add instructions/willibrandon/seq-mcp-server/claude-mdgit clone --depth 1 https://github.com/willibrandon/seq-mcp-serverWrote 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.
[](https://agentmods.dev/instructions/willibrandon/seq-mcp-server/claude-md)<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>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.
| Model | Per session | Once 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 |
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.
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 variablesSeqConnectionFactory(src/SeqMcpServer/Services/SeqConnectionFactory.cs): Creates Seq API connections per workspace
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.
- 3d ago First seen · 109 lines · 753 tokens per session scan A facf328b1c4a
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.
Other instructions, from other repositories
markitdown-mcp AGENTS.md
Instructions for trsdn/markitdown-mcp, covering ai agents integration guide, 🤖 quick reference for ai agents, primary use cases, available tools and 🛠️ tool usage guide.
che-word-mcp CLAUDE.md
Claude Code instructions for PsychQuant/che-word-mcp, covering che-word-mcp 開發指引, 專案結構, 重要路徑規則, binary 安裝位置 and mcpb 打包檔位置.
tmdb-mcp AGENTS.md
Instructions for Grinv/tmdb-mcp, covering agents.md, project shape, commands, conventions and testing the live/published server.
mal-mcp AGENTS.md
Instructions for Grinv/mal-mcp, covering agents.md, project shape, commands, conventions and testing the live/published server.
FusionAL CLAUDE.md
Claude Code instructions for JRM-FusionAL/FusionAL, covering claude.md — fusional, session init — run this first, recall protocol (mandatory, visible), auto-log protocol (mandatory, ambient) and critical failure modes (already logged — do not repeat).
anilist-mcp-server AGENTS.md
AGENTS.md instructions for Grinv/anilist-mcp-server, covering agents.md, project shape, why this server exists, commands and conventions.