Mcp Server Seq
Overview
Seq MCP Server is a server designed to interact with Seq's API endpoints, providing comprehensive access to logging and monitoring features through the Model Context Protocol.
To use the Seq MCP Server, clone the repository, install dependencies, and configure it with your Seq server URL and API key. You can then run the server and integrate it with Claude Desktop.
- Signals Management: Fetch and filter signals based on various criteria. - Event Management: Retrieve events with extensive filtering options and configurable counts. - Alert Management: Access the current state of alerts. - Type Safety: Utilizes TypeScript and Zod for type checking and validation.
- Managing and monitoring application logs.
- Fetching and filtering specific events for analysis.
- Integrating with other tools for enhanced logging capabilities.
Add to your AI client
Use these steps to connect Mcp Server Seq in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-server-seq-ahmad2x4": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-server-seq-ahmad2x4": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-seq-ahmad2x4": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-server-seq-ahmad2x4": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-seq-ahmad2x4": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-seq-ahmad2x4": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-seq-ahmad2x4"
]
}
}
}FAQ
**Is Seq MCP Server free to use?**
Yes, it is open-source and available for anyone to use.
**What programming language is used?**
The server is built using JavaScript and TypeScript.
**How do I report issues?**
You can report issues on the GitHub repository's issue tracker.