Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# `seqcli` [![CI](https://github.com/datalust/seqcli/actions/workflows/ci.yml/badge.svg?branch=dev&event=push)](https://github.com/datalust/seqcli/actions/workflows/ci.yml) [![GitHub release](https://img.shields.io/github/release/datalust/seqcli.svg)](https://github.com/datalust/seqcli/releases)

The [Seq](https://datalust.co/seq) client command-line app. Supports logging (`seqcli log`), searching (`search`), tailing (`tail`), querying (`query`) and [JSON or plain-text log file](https://github.com/serilog/serilog-formatting-compact) ingestion (`ingest`), and [much more](https://github.com/datalust/seqcli#commands).
The [Seq](https://datalust.co/seq) command-line interface for Seq users and AI agents.

Supports logging (`seqcli log`), searching (`search`), tailing (`tail`), querying (`query`) and [JSON or plain-text log file](https://github.com/serilog/serilog-formatting-compact) ingestion (`ingest`), and [much more](https://github.com/datalust/seqcli#commands).

![SeqCli Screenshot](https://raw.githubusercontent.com/datalust/seqcli/dev/asset/SeqCli.png)

Expand Down Expand Up @@ -60,26 +62,24 @@ $token = (

### MCP and agent skills

`seqcli` includes support for agent-driven diagnostic workflows:

```
dotnet tool install -g seqcli
```
AI agents use `seqcli` to access Seq. Installing the `seqcli` skills and MCP server makes AI agents faster, more successful and more efficient.

For skill installation:

```
seqcli skills install -a <agent> [--global]
seqcli skills install --agent <agent> [--global]
```

For local MCP server installation:

```
seqcli mcp install -a <agent> [--global]
seqcli mcp install --agent <agent> [--profile <profile>] [--global]
```

Credentials are set using configuration and environment variables as described above.

Upon running the AI agent verify that the skills and MCP server have been detected. If not, consult the agent's documentation for skill and MCP server installation.

## Contributing

See `CONTRIBUTING.md`.
Expand Down
2 changes: 1 addition & 1 deletion src/SeqCli/Cli/Commands/Mcp/InstallCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public InstallCommand()

Options.Add(
"a=|agent=",
"The agent name to install the MCP server for; the default is the generic name `agents`",
"The agent name to install the MCP server for; the default is the generic name `agents` - known values are: claude, windsurf, vscode, copilot, qwen, gemini, zed, amazonq, and roo",
t => _agent = ArgumentString.Normalize(t));

Options.Add(
Expand Down
Loading