Labsco
MGM-FALCON logo

quelllm-mcp

from MGM-FALCON

Query a catalog of 250+ open-weights LLMs โ€” list, compare, estimate VRAM and API-vs-self-hosted cost โ€” directly from Claude Code, Cursor or any MCP client.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeAdvanced setup

quelllm-mcp

MCP server exposing the quelllm.fr catalog of 190+ open-weights LLMs via Model Context Protocol tools. Use it from Claude Code, Cursor, Continue, or any MCP-compatible client to query models, compare them, estimate VRAM, and compute API vs self-hosted cost.

Tools exposed

ToolDescription
list_models(filter_origin?, filter_family?, max_params_b?)List models with filters (origin code, family, max params in B)
get_model(model_id)Full record for one model (params, vram per quant, context window, family, tags, license, URLs)
compare(model_a_id, model_b_id)Side-by-side comparison with verdict
estimate_vram(model_id, quant)VRAM in GB at chosen quant + recommended GPU/Mac tiers
estimate_cost(input_tokens_per_month, output_tokens_per_month, ...)Cost in EUR โ€” full table API providers vs self-hosted hardware OR a specific id
search_models(query, limit?)Fuzzy search by name, family, tag, author

Use with Claude Code

Add to ~/.claude.json or a project's .mcp.json. If you installed with pip :

{
  "mcpServers": {
    "quelllm": {
      "command": "quelllm-mcp"
    }
  }
}

Or zero-install with uvx :

{
  "mcpServers": {
    "quelllm": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/MGM-FALCON/quelllm-mcp.git", "quelllm-mcp"]
    }
  }
}

Use with Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) :

{
  "mcpServers": {
    "quelllm": {
      "command": "quelllm-mcp"
    }
  }
}

Use with Cursor / Continue / Cline

Most MCP clients accept the same JSON config :

{
  "command": "quelllm-mcp"
}

Example queries (from your client)

> Quels LLM Mistral peuvent tourner sur RTX 5070 Ti 16GB ?
โ†’ list_models(filter_family='Mistral', max_params_b=24)
โ†’ estimate_vram('mistral-small-24b', 'q4')

> Compare Llama 3.3 70B vs Qwen 2.5 32B
โ†’ compare('llama33-70b', 'qwen25-32b')

> J'utilise 10M tokens input + 2.5M output / mois. Combien je paye chez OpenAI vs DeepSeek ?
โ†’ estimate_cost(10_000_000, 2_500_000)

Data source

All data pulled from quelllm.fr/api/ (CC BY 4.0, no key, CORS-enabled). Cached locally for 1h to avoid rate-limiting.

API pricing data (GPT-5, Claude Opus 4.7, Gemini 2.5, DeepSeek, Mistral) and hardware pricing (RTX 50-series, Mac M4) are hardcoded as of 2026-05 โ€” verify semestrially.

Author

Mohamed Meguedmi โ€” LinkedIn ยท Hugging Face Founder of La Gazette IA and QuelLLM.fr.