model-radar
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 130+ free coding LLM models across 17 providers in real-time, ranks them by latency, and helps AI agents pick the fastest available model.
Inspired by free-coding-models.
Install
pip install model-radarRelated MCP server: Multi-LLM Gateway 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 in project root or ~/.cursor/mcp.json):
Stdio (default — Cursor starts the server):
{
"mcpServers": {
"model-radar": {
"command": "/path/to/your/.venv/bin/model-radar",
"args": ["serve"]
}
}
}SSE (you run the server; Cursor connects by URL):
The server listens on one port and serves both Streamable HTTP (/mcp) and SSE (/sse, /messages/). Cursor tries Streamable HTTP first, then SSE, so it can connect as soon as the server is up.
# Terminal: start the server (leave it running)
model-radar serve --transport sse --port 8765Then in Cursor MCP config use the URL http://127.0.0.1:8765 (or http://127.0.0.1:8765/mcp / http://127.0.0.1:8765/sse as your client expects). Start the server before opening the project so Cursor finds it immediately.
Web dashboard: With --web, the same server serves a localhost UI at http://127.0.0.1:8765/ for status, config, discovery, and running prompts (REST API at /api/*). MCP remains at /sse. Privacy: The server binds to 127.0.0.1 only; your API keys and data never leave your machine. Keys are stored only in ~/.model-radar/config.json (0o600).
model-radar serve --transport sse --port 8765 --webRestarting the SSE server: After updating model-radar, restart the server so new tools appear. You can either restart the process manually, or run with a restart wrapper and use the restart_server() MCP tool:
# Allow the MCP tool to request exit; a loop restarts the server
export MODEL_RADAR_ALLOW_RESTART=1
while true; do model-radar serve --transport sse --port 8765; sleep 1; doneThen call the restart_server() tool (e.g. from an agent); the process exits, the loop starts a new one with updated code, and you reconnect.
OpenClaw (~/.openclaw/openclaw.json):
{
"mcpServers": {
"model-radar": {
"command": "model-radar",
"args": ["serve"]
}
}
}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-xxxProviders (17)
Provider | Env Var | Free Tier |
NVIDIA NIM |
| Rate-limited, no expiry |
Groq |
| Free tier |
Cerebras |
| Free tier |
SambaNova |
| $5 credits / 3 months |
OpenRouter |
| 50 req/day on :free models |
Hugging Face |
| Free monthly credits |
Replicate |
| Dev quota |
DeepInfra |
| Free dev tier |
Fireworks |
| $1 free credits |
Codestral |
| 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 |
MCP Tools
list_providers()— See all 17 providers with config statuslist_models(tier?, provider?, min_tier?)— Browse the model catalogscan(tier?, provider?, min_tier?, configured_only?, limit?)— Ping models in parallel, ranked by latencyget_fastest(min_tier?, provider?, count?)— Quick: best N models right nowprovider_status()— Per-provider health checkconfigure_key(provider, api_key)— Save an API key
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 |
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.
Latest Blog Posts
- 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