Log Agent Team MCP Server for log analysis
npm install log-agent-mcp-serverlog_agent_mcp_server Python package must be installedbash
npx @log-agent-team/mcp-server
`$3
The wrapper forwards all arguments to the underlying Python script:`bash
npx @log-agent-team/mcp-server --host 0.0.0.0 --port 8001 --reload
`Configuration with Windsurf/Cascade
Add the following to your mcp_config.json:`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:
`bash
cd /path/to/log_agent_mcp_server
python -m pytest tests/
``