model-radar
model-radar is an MCP server for discovering, testing, and using free/subscription coding LLM models across providers. You can:
Discovery & status:
list_providers(),list_models(),scan()to ping/rank by latency,get_fastest(),get_workers(),provider_status(),refresh_models().Execution:
run()fastest with fallback,ask()parallel multi-model,batch_run()concurrent/resumable,recommend()job-specific lineup,quality_probe(),still_free().Evaluation & benchmarking:
benchmark()coding challenge suite; LLM-as-judgejudge(),compare(),batch_judge();backtranslate_eval()translation quality.Configuration & integration:
configure_key(),setup_guide(),setup_workflow(),host_swap_instructions()for clients like Cursor/Claude Code/OpenClaw.Server management:
restart_server(),server_stats().
Provides real-time latency ranking of Cloudflare's free coding LLM models (10K neurons/day). Enables AI agents to select the fastest available model from Cloudflare's offerings.
Provides real-time latency ranking of Google AI's free coding LLM models (14.4K req/day). Enables AI agents to select the fastest available model from Google's offerings.
Provides real-time latency ranking of Hugging Face's free coding LLM models (free monthly credits). Enables AI agents to select the fastest available model from Hugging Face's offerings.
Provides real-time latency ranking of NVIDIA NIM's free coding LLM models (rate-limited, no expiry). Enables AI agents to select the fastest available model from NVIDIA's offerings.
Provides real-time latency ranking of Perplexity's free coding LLM models (tiered limits). Enables AI agents to select the fastest available model from Perplexity's offerings.
Provides real-time latency ranking of Replicate's free coding LLM models (dev quota). Enables AI agents to select the fastest available model from Replicate's offerings.
Provides real-time latency ranking of Scaleway's free coding LLM models (1M free tokens). Enables AI agents to select the fastest available model from Scaleway's offerings.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@model-radarfind the fastest free coding model right now"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
model-radar
MCP server that pings free coding LLM models across HTTPS providers and subscription CLIs (Claude Code, Grok, Antigravity/agy, Codex), ranks them by latency, and helps AI agents pick the fastest available model — or pin several subscriptions for a parallel review.
Inspired by free-coding-models.
Install
pip install model-radar-mcpRelated MCP server: beacon-mcp
Quick Start
1. Configure an API key
# Option A: Save to ~/.model-radar/config.json
model-radar configure nvidia nvapi-xxx
# Option B: Environment variable
export NVIDIA_API_KEY=nvapi-xxxOr copy the template: cp config.example.json ~/.model-radar/config.json and edit it.
2. Add to your MCP client
Claude Code (~/.claude/settings.json):
{
"mcpServers": {
"model-radar": {
"command": "model-radar",
"args": ["serve"]
}
}
}Cursor (~/.cursor/mcp.json):
Stdio (Cursor starts the server):
{
"mcpServers": {
"model-radar": {
"command": "/path/to/your/.venv/bin/model-radar",
"args": ["serve"]
}
}
}Streamable HTTP (persistent server — recommended):
{
"mcpServers": {
"model-radar": {
"url": "http://127.0.0.1:8743/mcp",
"transportType": "streamable-http"
}
}
}Start the server first:
model-radar serve --transport sse --port 8743OpenClaw (~/.openclaw/config/mcporter.json):
{
"mcpServers": {
"model-radar": {
"type": "http",
"url": "http://127.0.0.1:8743/mcp"
}
}
}Web dashboard: Add --web for a localhost UI at http://127.0.0.1:8743/ for status, config, discovery, and running prompts. The server binds to 127.0.0.1 only; keys never leave your machine.
model-radar serve --transport sse --port 8743 --webAuto-restart wrapper:
while true; do model-radar serve --transport sse --port 8743; sleep 1; doneThen call restart_server() from any MCP client to reload with updated code.
3. CLI usage
# Scan models
model-radar scan --min-tier S --limit 10
# List providers
model-radar providers
# Save a key
model-radar configure nvidia nvapi-xxxCatalogs are live
Model ids are not a hardcoded list. On startup, once an hour, and after a completion 404, model-radar fetches each provider’s /v1/models (Ollama /api/tags, grok models / agy models) and replaces that provider’s catalog — new ids in, retired ids gone. GET /v1/models is free; completions are what you pay for.
Seed tuples in the package are a fallback plus SWE-bench overlays for known ids. See Catalog playbook.
model-radar db refresh # force live replace
python scripts/catalog-report.py # seed vs live vs missing keys (no secrets)Providers
HTTPS providers take an API key (configure_key or env). Call list_providers() for the current count and key status.
Provider | Env Var | Notes |
NVIDIA NIM |
| Rate-limited, no expiry |
Groq |
| Free tier |
Cerebras |
| Small, fast; catalog rotates often |
SambaNova |
| $5 credits / 3 months |
OpenRouter |
|
|
Hugging Face |
| Free monthly credits |
Replicate |
| Dev quota |
DeepInfra |
| Free dev tier |
Fireworks |
| $1 free credits |
Codestral/Mistral |
| 30 req/min, 2000/day |
Hyperbolic |
| $1 free trial |
Scaleway |
| 1M free tokens |
Google AI |
| 14.4K req/day |
SiliconFlow |
| Free model quotas |
Together AI |
| Credits vary |
Cloudflare |
| 10K neurons/day |
Perplexity |
| Tiered limits |
xAI |
| Or use the |
Inference.net |
| Free tier |
SEA-LION |
| Free tier |
MiniMax |
|
|
Ollama | none (local daemon) | Models already pulled on |
CLI subscriptions
If you already pay for a monthly plan, model-radar can ride that subscription — no API key. The official CLI is auto-detected from $PATH at startup.
CLI | Rides | Login |
| Claude Pro / Max |
|
| SuperGrok |
|
| Google AI Pro/Ultra / Gemini | run |
| ChatGPT Plus / Pro |
|
The old gemini CLI was deprecated (June 2026) in favor of Antigravity CLI (agy). Install: curl -fsSL https://antigravity.google/cli/install.sh | bash. agy models may also list Claude and GPT-OSS on the same login. Codex-in-agy is a conversation mode; for model-radar use the standalone codex CLI.
These never join get_fastest() / default ask() — that would spend quota by accident. Pin them:
ask(prompt="Review this paragraph…", providers=["claude", "grok", "gemini"])
ask(prompt="…", model_ids=["sonnet", "grok-4.6"])MCP Tools
Discovery
list_providers()— See all providers, API-key status, and installed subscription CLIslist_models(tier?, provider?, min_tier?, free_only?)— Browse the catalog (refreshes a provider if its list is older than an hour)scan(verify?)— Ping models in parallel, ranked by latency.verify=Truechecks for non-empty output.get_fastest(min_tier?, count?, free_only?, verified?)— Best N models right nowget_workers(count?, min_tier?, verified?)— N verified-alive models from N distinct providersprovider_status()— Per-provider health check
Execution
run(prompt, model_id?, free_only?)— Execute on fastest model with auto-fallbackask(prompt, count=3, model_ids?, providers?)— Same prompt on N models (Ollama sequential, remotes parallel)recommend(job)— Short diverse lineup fortranslate/rewrite/review/code/dictquality_probe(job)— Time + pass/fail on a fixed prompt (dict= Paper B five headwords)still_free(speed?)— Which Lane A hosts still answer; up to 3 chat models each in parallel (speed=fastprefers small/flash ids)batch_run(prompts, results_file?)— Batch execution with incremental JSONL, resume support, adaptive concurrency
Evaluation (LLM-as-Judge)
judge(prompt, rubric, count=3, exclude_providers?)— Rate a single item with N diverse judges (pass the producer to exclude)compare(item_a, item_b, blind=True)— Blind A/B comparison, randomized order per judgebatch_judge(items, rubric, results_file?)— Evaluate at scale with incremental resultsbacktranslate_eval(..., exclude_providers?)— Back-translation quality metric; do not use the producer
Quality & Setup
benchmark(model_id?)— Quality-test with 5 coding challengesrefresh_models()— Fetch live lists and replace each provider’s catalog (purge retired ids)setup_guide(provider?)— Setup instructions for unconfigured providersconfigure_key(provider, api_key)— Save an API keyrestart_server()— Restart for code updates (SSE mode)server_stats()— Uptime and start time
Tier Scale (SWE-bench Verified)
Tier | Score | Meaning |
S+ | 70%+ | Elite frontier coders |
S | 60-70% | Excellent |
A+ | 50-60% | Great |
A | 40-50% | Good |
A- | 35-40% | Decent |
B+ | 30-35% | Average |
B | 20-30% | Below average |
C | <20% | Lightweight/edge |
Documentation
Architecture — Module map, live catalogs, transport, rate limiting
MCP Transport — Transport options, stateless HTTP, client configuration
Catalog playbook — Live vs seed, TTL, purge, 404 refetch
Local MCP ops — systemd restart, keys, compare runs
Translation Pipeline Playbook — Batch translation patterns
LLM-as-Judge Playbook — Evaluation patterns and judge selection
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityCmaintenanceMCP server that gives AI coding agents (Claude Code, Cursor, Cline, etc.) access to multiple AI models through Antigravity CLI and OpenAI Codex CLI, enabling mid-conversation model consultation and code review.8
- AlicenseAqualityAmaintenanceMCP server that searches 3,800+ open-source AI agents by capability, ranked by real traction (stars, activity). Query it from Claude Desktop, Cursor, Cline, or Windsurf.348MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that helps AI assistants automatically find, filter, and rank the best AI models for a specific task using the OpenRouter API.1MIT
- AlicenseNot gradedqualityDmaintenanceMCP server that benchmarks AI models on your actual prompts and finds cheaper, faster alternatives.48MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
MCP server for AI agent profiles and smart notes. 60+ coding prompt packs with expert personas.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/srclight/model-radar'
If you have feedback or need assistance with the MCP directory API, please join our Discord server