Model ID Cheatsheet
Provides current model IDs, pricing, and specifications for Amazon's AI models (e.g., Nova series).
Provides current model IDs, pricing, and specifications for Google's AI models (e.g., Gemini series).
Provides current model IDs, pricing, and specifications for Kuaishou's AI models (e.g., KAT-Coder Pro).
Provides current model IDs, pricing, and specifications for Meta's AI models (e.g., Llama series).
Provides current model IDs, pricing, and specifications for NVIDIA's AI models (e.g., Nemotron series).
Provides current model IDs, pricing, and specifications for OpenAI's AI models (e.g., GPT series).
Provides current model IDs, pricing, and specifications for Perplexity's AI models (e.g., Sonar series).
Provides current model IDs, pricing, and specifications for Xiaomi's AI models (e.g., MiMo V2 Flash).
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 ID CheatsheetIs gpt-4o still available?"
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 ID Cheatsheet
Stop your AI coding agent from hallucinating outdated model names. This MCP server gives any AI assistant instant access to accurate, up-to-date API model IDs, pricing, and specs for 107 models across 19 providers.
Built in Go. Single 10MB binary. Zero external calls. Sub-millisecond responses. Auto-updated daily.
- model = "gpt-4-turbo" # Hallucinated - doesn't exist anymore
+ model = "gpt-5.3-codex" # Correct - verified against official docs- model = "claude-3-opus-20240229" # Deprecated
+ model = "claude-opus-4-6" # Current - latest Anthropic flagshipQuick Start
Pick one option below. You'll be up and running in under a minute.
Option A: Claude Code (one command)
claude mcp add --transport sse --scope user model-id-cheatsheet \
https://universal-model-registry-production.up.railway.app/sseVerify it works:
claude mcp list
# Should show: model-id-cheatsheet ... ConnectedThen start a new Claude Code session and ask: "What's the latest OpenAI model?" - it will use the tools automatically.
Option B: Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"model-id-cheatsheet": {
"url": "https://universal-model-registry-production.up.railway.app/sse"
}
}
}Restart Cursor to pick up the change.
Option C: Windsurf
Add to Settings > MCP Servers (or edit ~/.codeium/windsurf/mcp_config.json):
{
"mcpServers": {
"model-id-cheatsheet": {
"serverUrl": "https://universal-model-registry-production.up.railway.app/sse"
}
}
}Option D: Codex CLI
Add to ~/.codex/config.toml:
[mcp_servers.model-id-cheatsheet]
command = "uvx"
args = ["mcp-proxy", "--transport", "sse", "https://universal-model-registry-production.up.railway.app/sse"]Option E: OpenCode
Add to ~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"model-id-cheatsheet": {
"type": "remote",
"url": "https://universal-model-registry-production.up.railway.app/sse"
}
}
}Option F: Any MCP Client
Connect to the SSE endpoint directly (no API key, no auth):
https://universal-model-registry-production.up.railway.app/sseOr use the Streamable HTTP transport:
https://universal-model-registry-production.up.railway.app/mcpVerify Your Setup
Once connected, try asking your AI assistant any of these:
"What's the correct model ID for Claude Opus 4.6?"
"Is gpt-4o still available?"
"Compare gpt-5.2 vs claude-opus-4-6"
"What's the cheapest model with vision?"
If the agent calls a tool like get_model_info or check_model_status before answering, it's working.
Related MCP server: Promptibus MCP
How It Works
Your AI agent gains 6 tools that it calls automatically before writing any model ID:
Tool | What It Does | Example Prompt |
| Full specs: API ID, pricing, context window, capabilities | "What's the model ID for Claude Sonnet?" |
| Browse and filter the registry | "Show me all current Google models" |
| Ranked recommendations for a task | "Best model for coding, cheap budget" |
| Verify if a model is current, legacy, or deprecated | "Is gpt-4o still available?" |
| Side-by-side comparison table | "Compare gpt-5.2 vs claude-opus-4-6" |
| Free-text search across all fields | "Search for reasoning models" |
Resources
URI | Description |
| Full JSON dump of all 107 models |
| Only current (non-deprecated) models as JSON |
| Pricing table sorted cheapest-first (markdown) |
What Happens Under the Hood
You ask your agent to write code or answer a model question
The agent automatically calls the appropriate tool (e.g.,
get_model_info)The server responds in sub-milliseconds with verified data (no external API calls)
The agent writes code with the correct, current model ID
The server instructions tell the agent: "NEVER use a model ID from your training data without verifying it first." This means the agent will always check before writing.
Real-World Examples
Writing an API call:
# You: "Call the OpenAI API with their best coding model"
# Agent calls: get_model_info("gpt-5.4")
response = client.chat.completions.create(
model="gpt-5.4", # Verified via model registry
messages=[...]
)Catching deprecated models:
# You: "Use gpt-4o for this task"
# Agent calls: check_model_status("gpt-4o")
# Agent: "gpt-4o is deprecated. I'll use gpt-5 instead."
response = client.chat.completions.create(
model="gpt-5", # Updated automatically
messages=[...]
)Finding the cheapest option:
# You: "Use the cheapest model that supports vision"
# Agent calls: list_models(capability="vision", status="current")
response = client.chat.completions.create(
model="gpt-5-nano", # $0.05/$0.40 per 1M tokens
messages=[...]
)Comparing options:
# You: "Should I use Claude or GPT for this?"
# Agent calls: compare_models(["claude-opus-4-6", "gpt-5.2"])
# Agent gets a side-by-side table and makes a recommendationResource Footprint
A common concern: "Will this slow down my agent or eat tokens?"
Metric | Value |
Binary size | ~10MB |
Runtime memory | Minimal (static in-memory map, no database) |
External API calls | Zero (all data is baked in) |
Response time | Sub-millisecond |
Token cost per tool call | ~200-500 tokens (small text response) |
Tool schema overhead | ~500-800 tokens in system prompt |
For comparison, a single web search costs more tokens than all 6 tool schemas combined.
Covered Models (107 total)
Current Models (79)
Provider | Models | API IDs |
OpenAI (15) | GPT-5.4, GPT-5.4 Pro, GPT-5.3 Instant, GPT-5.2, GPT-5.2 Pro, GPT-5.1, GPT-5.1 Codex, GPT-5.1 Mini, GPT-5, GPT-5 Mini, GPT-5 Nano, GPT-4.1 Mini, GPT-4.1 Nano, o3, o4-mini |
|
Anthropic (4) | Claude Opus 4.6, Claude Sonnet 4.6, Claude Sonnet 4.5, Claude Haiku 4.5 |
|
Mistral (11) | Mistral Large 3, Mistral Medium 3, Mistral Small 3.2, Mistral Saba, Ministral 3B, Ministral 8B, Ministral 14B, Magistral Small 1.2, Magistral Medium 1.2, Devstral 2, Devstral Small 2 |
|
Amazon (6) | Nova Micro, Nova Lite, Nova Pro, Nova Premier, Nova 2 Lite, Nova 2 Pro |
|
Google (5) | Gemini 3.1 Pro, Gemini 3.1 Flash Lite, Gemini 3 Flash, Gemini 2.5 Pro, Gemini 2.5 Flash |
|
Cohere (5) | Command A, Command A Reasoning, Command A Vision, Command A Translate, Command R7B |
|
xAI (4) | Grok 4, Grok 4.1 Fast, Grok 4 Fast, Grok Code Fast 1 |
|
Microsoft (4) | Phi-4, Phi-4 Multimodal, Phi-4 Reasoning, Phi-4 Reasoning Plus |
|
Perplexity (4) | Sonar, Sonar Pro, Sonar Reasoning Pro, Sonar Deep Research |
|
Moonshot (3) | Kimi K2.5, Kimi K2 Thinking, Kimi K2 (0905) |
|
Tencent (3) | Hunyuan TurboS, Hunyuan T1, Hunyuan A13B |
|
Zhipu (3) | GLM-5, GLM-4.7, GLM-4.7 FlashX |
|
Meta (2) | Llama 4 Maverick, Llama 4 Scout |
|
DeepSeek (2) | DeepSeek Reasoner, DeepSeek Chat |
|
NVIDIA (2) | Nemotron 3 Nano 30B, Nemotron Ultra 253B |
|
AI21 (2) | Jamba Large 1.7, Jamba Mini 1.7 |
|
MiniMax (2) | MiniMax M2.5, MiniMax M2.5 Lightning |
|
Kuaishou (1) | KAT-Coder Pro |
|
Xiaomi (1) | MiMo V2 Flash |
|
Legacy & Deprecated Models (30)
Tracked so your agent can detect outdated model IDs and suggest current replacements:
OpenAI:
gpt-5.3-codex(deprecated),gpt-5.2-codex(deprecated),gpt-5.1-codex-mini(deprecated),o3-pro(deprecated),o3-deep-research(deprecated),o3-mini(legacy),gpt-4.1(deprecated),gpt-4o(deprecated),gpt-4o-mini(deprecated)Anthropic:
claude-opus-4-5(legacy),claude-opus-4-1(legacy),claude-opus-4-0(legacy),claude-sonnet-4-0(legacy),claude-3-7-sonnet-20250219(deprecated)Google:
gemini-3-pro-preview(deprecated),gemini-3-pro-image-preview(deprecated),gemini-2.5-flash-lite(deprecated),gemini-2.0-flash-lite(deprecated),gemini-2.0-flash(deprecated)xAI:
grok-4.1(deprecated),grok-3(legacy),grok-3-mini(legacy)Mistral:
mistral-small-2503(legacy),codestral-2508(legacy)MiniMax:
minimax-m2.1(legacy),minimax-01(deprecated)Meta:
llama-3.3-70b(legacy)DeepSeek:
deepseek-r1(legacy),deepseek-v3(deprecated)Zhipu:
glm-4.6v(deprecated)
Self-Hosting
If you prefer to run the server locally instead of using the hosted endpoint:
Option 1: Build from Source (recommended for local use)
Requires Go 1.23+.
git clone https://github.com/aezizhu/universal-model-registry.git
cd universal-model-registry/go-server
go build -o model-id-cheatsheet ./cmd/serverThen add it to Claude Code as a local stdio server (zero latency, no network):
claude mcp add --scope user model-id-cheatsheet -- /path/to/model-id-cheatsheetOr run in SSE mode for other clients:
MCP_TRANSPORT=sse PORT=8000 ./model-id-cheatsheet
# Endpoint: http://localhost:8000/sseOption 2: Docker
git clone https://github.com/aezizhu/universal-model-registry.git
cd universal-model-registry
docker build -t model-id-cheatsheet .
docker run -p 8000:8000 model-id-cheatsheetYour SSE endpoint will be at http://localhost:8000/sse.
Option 3: Deploy to Railway
Or manually:
railway login
railway init
railway upStaying Up to Date
Model data is automatically checked and updated daily at 7 PM Pacific Time -- no human intervention needed.
How it works:
Railway cron runs the updater daily, scraping 6 providers' public documentation pages (no API keys needed)
Models removed from docs --> auto-deprecated via PR (status changed to
"deprecated"in code)New models detected --> GitHub issue created for review
CI runs on the auto-generated PR --> if tests pass --> auto-merged into main
Railway auto-deploys from main
No provider API keys required. The updater reads publicly available documentation pages to detect model changes. Only GITHUB_TOKEN and GITHUB_REPO are needed for creating PRs and issues.
Railway Cron (primary) -- The hosted instance uses a Railway cron service that runs the updater daily. See configs/railway-updater.toml for the configuration.
Required env vars (set in Railway dashboard):
GITHUB_TOKEN-- GitHub personal access token with repo scopeGITHUB_REPO-- Repository in"owner/repo"format (e.g."aezizhu/universal-model-registry")
Providers checked (via public docs):
OpenAI (via GitHub SDK source), Anthropic, Google, Mistral, xAI, DeepSeek
CI/CD Workflows:
.github/workflows/ci.yml-- runs tests on every PR.github/workflows/auto-merge.yml-- auto-merges bot PRs (labeledauto-update) after CI passes
GitHub Actions (alternative) -- A GitHub Actions workflow is also included at .github/workflows/auto-update.yml for users who self-host without Railway. No API keys needed -- only GITHUB_TOKEN (automatically provided by GitHub Actions).
Security
Rate limiting: 60 requests/minute per IP
Connection limits: Max 5 SSE connections per IP, 100 total
Request body limit: 64KB max
Input sanitization: All string inputs truncated to safe lengths
HTTP hardening: ReadTimeout 15s, ReadHeaderTimeout 5s, IdleTimeout 120s, 64KB max headers
Non-root Docker: Containers run as unprivileged user
Graceful shutdown: Clean connection draining on SIGINT/SIGTERM
Tech Stack
Language: Go 1.23
MCP SDK:
github.com/modelcontextprotocol/go-sdkv1.3.0 (official)Transports: stdio, SSE, Streamable HTTP
Binary size: ~10MB
Tests: 156 unit tests
Security: Per-IP rate limiting, connection limits, input sanitization
Deploy: Docker (alpine), Railway
Contributing
Contributions are welcome! Whether it's adding a new model, fixing data, or improving the server:
Fork the repo and clone it locally
Edit model data in
go-server/internal/models/data.goUpdate test counts in
go-server/internal/models/data_test.goRun the tests:
cd go-server && go test ./... -vSubmit a PR -- we'll review it quickly
If you spot an outdated model or incorrect pricing, opening an issue is just as helpful.
License
MIT
This server cannot be installed
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/aezizhu/Model-ID-Cheatsheet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server