Up-to-date LLM pricing + availability catalog with cited sources for AI agent routing.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-weiseer-llm-oracle": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Up-to-date LLM pricing + availability catalog with cited sources for AI agent routing.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / maps
Workspace template + MCP server for Claude Code, Codex CLI, Cursor & Windsurf. Multi-agent knowledge engine (ag-refresh / ag-ask) that turns any codebase into a queryable AI assistant.
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
A markdown editor — and the bridge to your LLM. Local-first, MIT, ~15 MB. Bundled MCP server lets Claude Code / Codex / Cursor drive your vault directly. 14 AI providers BYOK.
MCP Security Weekly
Get CVE alerts and security updates for io.github.weiseer/llm-oracle and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Continuously-updated catalog + query API for LLM provider availability and pricing.
Built by weiseer.
Given a question like "for this prompt of N input tokens plus M expected output tokens, which currently-available model offers the lowest cost?" the oracle answers in milliseconds, with the source URL it used for the pricing claim.
Use it as:
catalog.json you can audit, vendor, or contribute fixes toLLM pricing changes monthly. Every multi-model app rebuilds the same lookup table. We maintain it so you don't.
as_of timestamp on every response so you know how fresh the data is5 providers, ~10 models. Growing as we observe demand.
git clone https://github.com/weiseer/llm-oracle
cd llm-oracle
Add to your MCP client config:
{
"mcpServers": {
"llm-oracle": {
"command": "python",
"args": ["/absolute/path/to/llm-oracle/mcp_server.py"]
}
}
}
The agent now has tools:
list_models(provider?, capability?) → list models, optionally filteredget_model(model_id) → full record for one modelfind_cheapest(input_tokens, output_tokens, required_capabilities?) → ranked by estimated costcompare_models(model_ids[], input_tokens?, output_tokens?) → side-by-sidecheck_availability(model_id) → current status with cited source# Free tier: 1,000 calls/day per IP, no key
curl https://oracle.weiseer.com/catalog.json
curl 'https://oracle.weiseer.com/cheapest?input_tokens=2000&output_tokens=500'
curl https://oracle.weiseer.com/models/claude-sonnet-4-6
curl https://oracle.weiseer.com/catalog.json > my-local-catalog.json
| Tier | Calls | Cost |
|---|---|---|
| Free | 1,000/day | $0 |
| Pro | 100,000/month | $5 USDC/mo |
| Scale | 1,000,000/month | $20 USDC/mo |
| Raw catalog | unlimited | $0 (always free) |
Paid tiers settle in USDC. Email wei@weiseer.com to subscribe; we issue an API key and confirm receipt. (We'll automate this when the first three paid customers exist.)
See catalog.json for the canonical schema. Per-model fields include model_id, provider, family, context_window, max_output_tokens, input_price, output_price, cached_input_price, capabilities, availability_status, source URLs, and timestamps.
Found a stale price? An incorrect capability flag? A missing model? Open an issue — please include the source URL we should be tracking.
The hosted service logs each request as a single event (caller, query summary, latency, paid status) to weiseer's append-only audit ledger. The MCP server you self-host logs nothing.
The catalog format is MIT licensed. Vendor it, mirror it, build on top of it. We ask only that you cite weiseer/llm-oracle somewhere visible if you redistribute the data.
The server and MCP code are Apache-2.0.