log-agent-mcp-server
v0.1.4
Published
Log Agent Team MCP Server for log analysis
Maintainers
Readme
Log Agent Team MCP Server
Overview
This npm package provides an npx-compatible wrapper around the Log Agent Team MCP Server, a specialized server for log analysis that integrates with Windsurf/Cascade.
Requirements
- Node.js 16.0.0 or higher
- Python 3.9 or higher
- The
log_agent_mcp_serverPython package must be installed
Usage
Via npx
npx @log-agent-team/mcp-serverOptions
The wrapper forwards all arguments to the underlying Python script:
npx @log-agent-team/mcp-server --host 0.0.0.0 --port 8001 --reloadConfiguration with Windsurf/Cascade
Add the following to your mcp_config.json:
"log_agent_team": {
"command": "npx",
"args": [
"-y",
"@log-agent-team/mcp-server"
],
"env": {
"MCP_PORT": "8001"
}
}Testing
Before deploying, ensure all Python tests pass by running:
cd /path/to/log_agent_mcp_server
python -m pytest tests/Development
This package is a wrapper around the Python-based server. For development on the actual server functionality, refer to the Python package documentation.
