A dating app for your GPU and local LLMs
It scans your hardware, checks Ollama's catalog of 7,000+ model variants, and tells you which ones will actually run — no more guessing VRAM limits.

What it does
LLM Checker is a Node.js CLI that probes your machine for CPU, RAM, GPU type (NVIDIA, AMD, Intel Arc, Apple Silicon), and acceleration backend. It cross-references that against a packaged SQLite catalog of 229 Ollama models and 7,176 variants, then scores compatibility across four axes: Quality, Speed, Fit, and Context. The output is a ranked list of what you can actually run locally, plus optional ai-run execution with live tokens-per-second metrics.
The interesting bit
The calibration layer. You can run a prompt suite through candidate models, generate a policy file, and then have future recommend and ai-run calls route through that empirical data instead of static heuristics. It also exposes an MCP server, so Claude Code can query your hardware, pull models, and benchmark them without leaving the chat.
Key highlights
- Ships with a prebuilt SQLite catalog (229 models, 7,176 variants) and a
synccommand to refresh from Ollama’s live registry - Hardware detection covers Apple Silicon, NVIDIA CUDA, AMD ROCm, Intel Arc, plus integrated vs. dedicated GPU visibility
- Memory estimation uses a bytes-per-parameter formula validated against real Ollama model sizes
- Pure JavaScript, zero native dependencies beyond optional
sql.js - MCP server exposes 15+ tools for hardware analysis, model management, benchmarking, and head-to-head comparison
Caveats
- The
ollama_plan_envtool returns “ready-to-paste” shell exports, which feels like a leaky abstraction for a CLI tool --mode fullcurrently requires--runtime ollama, so calibration flexibility is narrower than the marketing suggests- The README warns that the GitHub Packages mirror lags npm, which implies release hygiene is still being figured out
Verdict
Worth a look if you maintain multiple machines with different GPUs and want a single command to answer “will this model run here?” Skip it if you already have a fixed workflow and don’t need another abstraction layer over ollama list.
Frequently asked
- What is signerless/llm-checker?
- It scans your hardware, checks Ollama's catalog of 7,000+ model variants, and tells you which ones will actually run — no more guessing VRAM limits.
- Is llm-checker open source?
- Yes — signerless/llm-checker is an open-source project tracked on heatdrop.
- What language is llm-checker written in?
- signerless/llm-checker is primarily written in JavaScript.
- How popular is llm-checker?
- signerless/llm-checker has 2.8k stars on GitHub and is currently holding steady.
- Where can I find llm-checker?
- signerless/llm-checker is on GitHub at https://github.com/signerless/llm-checker.