Nft Log Analyzer MCP Server

1. **Scan** 500MB+ files in seconds using ripgrep 2. **Parse** error patterns, deduplicate repeated events 3. **Analyse** using local LLM (Ollama +

Local serverstdioPython

What is the Nft Log Analyzer MCP server?

  1. Scan 500MB+ files in seconds using ripgrep 2. Parse error patterns, deduplicate repeated events 3. Analyse using local LLM (Ollama + deepseek-r1:14b) via CrewAI agents 4. Compose structured GitHub Issues with root cause. That is what the nft log analyzer mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 3 tools. What each one is for:

  • ping — The ping tool exposed by this server
  • analyze_log_file — Start async log analysis. Returns a job ID immediately — pipeline runs in background
  • get_job_status — The get_job_status tool exposed by this server

Getting it running

The server ships on PyPI as mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

What it needs from you

Configuration is passed through the environment: GITHUB_PAT, GITHUB_REPO_OWNER, GITHUB_REPO_NAME, OLLAMA_BASE_URL, OLLAMA_MODEL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

| Requirement | Version | Notes | |---|---|---| | Python | 3.11+ | 3.14 not supported | | Ollama | Latest | brew install ollama | | deepseek-r1:14b | — | ~9GB download | | ripgrep | Latest | brew install ripgrep | | RAM | 16GB min | 32GB recommended | | macOS | Ventura 13+ | Apple Silicon recommended | ---

How it compares

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Nft Log Analyzer's toolset — ping, analyze_log_file, get_job_status — is a fair guide to whether it matches your workflow. It is maintained by mashish; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Nft Log Analyzer's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
pingThe ping tool exposed by this server.
analyze_log_fileStart async log analysis. Returns a job ID immediately — pipeline runs in background.
get_job_statusThe get_job_status tool exposed by this server.

How to install the Nft Log Analyzer MCP server

{
  "mcpServers": {
    "nft-log-analyzer": {
      "command": "uvx",
      "args": ["mcp"],
      "env": {
        "GITHUB_PAT": "your-value",
        "GITHUB_REPO_OWNER": "your-value",
        "GITHUB_REPO_NAME": "your-value",
        "OLLAMA_BASE_URL": "your-value",
        "OLLAMA_MODEL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

| Requirement | Version | Notes | |---|---|---| | Python | 3.11+ | 3.14 not supported | | Ollama | Latest | brew install ollama | | deepseek-r1:14b | — | ~9GB download | | ripgrep | Latest | brew install ripgrep | | RAM | 16GB min | 32GB recommended | | macOS | Ventura 13+ | Apple Silicon recommended | ---

VariableDescriptionRequired
GITHUB_PATConfiguration value read at startup.Optional
GITHUB_REPO_OWNERConfiguration value read at startup.Optional
GITHUB_REPO_NAMEConfiguration value read at startup.Optional
OLLAMA_BASE_URLEndpoint or connection string the server talks to.Yes
OLLAMA_MODELConfiguration value read at startup.Optional

Example prompts to try

  • Use Nft Log Analyzer to ping.
  • Use Nft Log Analyzer to analyze log file.
  • Use Nft Log Analyzer to get job status.

Frequently asked questions

It connects Nft Log Analyzer to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (ping, analyze_log_file, get_job_status) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Nft Log Analyzer directly.