CP Log Analyzer automatically triages your log files using a local AI model.
It scans for errors, deduplicates repeated events, analyses root causes using
Ollama (deepseek-r1:14b), and files structured GitHub Issues — all running
on your own machine with zero data sent to external servers.
Server Config
{
"mcpServers": {
"nft-log-analyzer": {
"command": "python",
"args": [
"/path/to/nft-log-analyzer/mcp_server/server.py"
],
"env": {
"GITHUB_PAT": "your_github_pat",
"GITHUB_REPO_OWNER": "your-username",
"GITHUB_REPO_NAME": "your-repo",
"OLLAMA_BASE_URL": "http://localhost:11434",
"OLLAMA_MODEL": "deepseek-r1:14b"
}
}
}
}