Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"token-oracle": {
"url": "https://mcp.guffeyholdings.com/TokenOracle",
"type": "streamable-http",
"headers": {
"X-API-Key": "${TOKEN_ORACLE_API_KEY}"
}
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'token-oracle-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked token-oracle-mcp against OSV.dev.
Click any tool to inspect its schema.
token-oracle://metaMachine-readable server capability document (version, model_count, pricing metadata)
token-oracle://meta
token-oracle://modelsModel IDs with metadata for discovery and validation
token-oracle://models
token-oracle://heuristicsTask-type token heuristics and keyword classifier patterns (auditable)
token-oracle://heuristics
token-oracle://pricing/changelogAppend-only log of pricing changes; use to detect pricing updates over time
token-oracle://pricing/changelog
cost_analysis_workflowGuided three-step prompt template: estimate_cost → compare_models → budget_check. Arguments: task_description, monthly_budget_usd (optional), quality_threshold (optional).
This server is missing a description.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 / analytics
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
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.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Security Weekly
Get CVE alerts and security updates for com.guffeyholdings/token-oracle and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
THIS REPO IS ARCHIVED AND THE SERVICE HAS BEEN SHUTDOWN
Token Oracle is a Model Context Protocol (MCP) server that estimates, compares, and controls LLM API costs before agents spend tokens. It exposes nine tools, four read-only Resources, and a cost_analysis_workflow Prompt template. It uses a proprietary pricing algorithm without a backing LLM to ensure deterministic budget workflows.
Designed to work with agent swarms backing one or zero employee companies, Token Oracle acts as a tiny CFO within your OpenClaw swarm keeping spend down and making suggestions to improve promptings.
Save them tokens, call Token Oracle today!
MCP tools exposed:
estimate_cost — Estimates the USD cost of a single LLM API call before execution. Input: task_description, prompt_text, task_type, or explicit token_count. Output: cost_usd, recommended_model, confidence, will_fit_context, pricing_updated. Annotations: readOnlyHint:true, idempotentHint:true, openWorldHint:false.estimate_cost_batch — Prices up to 100 LLM tasks in a single call. Returns per-task breakdown, total_cost_usd, and cheapest_model_for_all. Use before starting any multi-step pipeline.compare_models — Ranks LLM pricing across all supported providers for a given task. Returns models sorted by cost with speed_tier and quality_tier. Supports filtering by min_quality, max_cost_usd, and provider. Input: task_type, token_count, or prompt_text.budget_check — Checks whether a planned task fits within a monthly budget. Returns can_proceed (boolean), remaining_budget_usd, budget_consumed_pct, and cheaper_alternatives with savings_pct. Input: monthly_budget_usd, current_spend_usd, and task description.find_cheapest_for_budget — Inverse of budget_check. Given a budget_usd cap and task, returns the best model/quality combination within budget plus all alternatives ranked by quality then cost.MCP Resources exposed:
token-oracle://meta — Machine-readable server capability document (version, model_count, pricing metadata)token-oracle://models — Model IDs with metadata for discovery and validationtoken-oracle://heuristics — Task-type token heuristics and keyword classifier patterns (auditable)token-oracle://pricing/changelog — Append-only log of pricing changes; use to detect pricing updates over timeMCP Prompt exposed:
cost_analysis_workflow — Guided three-step prompt template: estimate_cost → compare_models → budget_check. Arguments: task_description, monthly_budget_usd (optional), quality_threshold (optional).Supported providers: Anthropic, OpenAI, Google, Groq, Together AI, Mistral, DeepSeek, Cohere (100+ models).
Canonical agent workflow example: Goal: Run 500 product description generation tasks. Budget $50/mo, current spend $43.
Pricing:
Contact: info@guffeyholdings.com
https://mcp.guffeyholdings.com/TokenOraclecom.guffeyholdings/token-oracleDirect remote configuration:
{
"mcpServers": {
"token-oracle": {
"type": "streamable-http",
"url": "https://mcp.guffeyho
... [View full README on GitHub](https://github.com/VictoryInTech/TokenOracle-MCP#readme)