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.
- Node.js 16.0.0 or higher
- Python 3.9 or higher
- The
log_agent_mcp_server
Python package must be installed
npx @log-agent-team/mcp-server
The wrapper forwards all arguments to the underlying Python script:
npx @log-agent-team/mcp-server --host 0.0.0.0 --port 8001 --reload
Add the following to your mcp_config.json
:
"log_agent_team": {
"command": "npx",
"args": [
"-y",
"@log-agent-team/mcp-server"
],
"env": {
"MCP_PORT": "8001"
}
}
Before deploying, ensure all Python tests pass by running:
cd /path/to/log_agent_mcp_server
python -m pytest tests/
This package is a wrapper around the Python-based server. For development on the actual server functionality, refer to the Python package documentation.