steamforecast-mcp
Provides calibrated revenue forecasts (P10/P50/P90) for Steam games, comparable game recommendations, Boxleiter rule-of-thumb estimates, calibration summaries, and methodology references via the steamforecast.app API.
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., "@steamforecast-mcpGet revenue forecast for Hades (appid 1145360)"
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.
steamforecast-mcp
Model Context Protocol server for Steam Launch Forecaster. Exposes calibrated revenue cones (P10–P90, empirically validated 80% coverage per genre) to Claude, ChatGPT, and any MCP-aware AI agent as tool calls.
What it does
Five tools, all backed by the public steamforecast.app API:
Tool | What it does |
| Calibrated P10/P50/P90 revenue cone for a Steam game by appid |
| Top-K nearest-neighbor comparable games (cosine sim over BGE embeddings) |
| Pure-compute Boxleiter rule-of-thumb sanity check |
| Latest published live coverage table (per-stratum) |
| Pulls llms.txt — high-quality URL inventory for ingestion |
get_forecast and get_comps make HTTPS calls to steamforecast.app. The
other three are pure compute / static reference, so they work offline once
the package is installed.
Install
pip install steamforecast-mcpConfigure your MCP client
Claude Desktop / Claude Code
Add to your MCP config (typically ~/.claude.json or
~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"steamforecast": {
"command": "steamforecast-mcp"
}
}
}Or via the Claude Code CLI:
claude mcp add steamforecast -- steamforecast-mcpOther MCP clients (Cursor, Cline, etc.)
Use the standard stdio MCP config; the executable is steamforecast-mcp
and takes no arguments.
Quick usage
Once configured, ask your AI agent things like:
"Pull a calibrated revenue forecast for Hades on Steam (appid 1145360) and compare it to the Boxleiter rule of thumb. Are they consistent?"
The agent will call get_forecast(1145360), then call
boxleiter_estimate(review_count, price_cents) with values from the
forecast result, then surface the divergence to you.
"What's the live calibration coverage on the strategy_sim stratum?"
The agent calls get_calibration_summary() and reads the per_stratum
table.
Why a separate server when the website exists?
Because LLMs and AI agents shouldn't have to scrape HTML to use a calibrated forecast. The MCP surface is structured (typed JSON), versioned, and rate-limit-aware, which is the right contract for tool-using models.
It also lets you build automations without manually copying numbers from the website into spreadsheets — e.g., a nightly Claude Code routine that pulls a forecast for every appid in a publisher's portfolio and writes a report.
Configuration
Env var | Purpose | Default |
| Override the API base URL (useful for local dev / staging) |
|
Development
git clone https://github.com/GC108/steamforecast-mcp
cd steamforecast-mcp
pip install -e ".[dev]"
pytest
ruff check .License
MIT — see LICENSE.
Related
steamforecast.app — calibrated revenue cones with empirically-validated 80% coverage per genre.
The Calibration Gap (Q2 2026 report) — methodology + live coverage evidence.
steam-page-stats — companion OSS Python client for Steam Storefront + Boxleiter rule-of-thumb (no MCP, just a library + CLI).
Model Context Protocol — the open standard this server implements.
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
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/GC108/steamforecast-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server