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.
Related MCP server: OpenDota MCP Server
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.
Available Tools
5 toolsboxleiter_estimateA
Apply the Boxleiter rule-of-thumb (review_count × multiplier × price).
A heuristic sanity check, NOT a calibrated forecast. Per the formula's own author (Mike Boxleiter, 2023 retrospective), ~24% of games are off by more than 30% from a single-multiplier estimate. Useful to compare against get_forecast() — large divergence between the heuristic and the calibrated cone signals an interesting outlier worth investigating.
Args: review_count: Total Steam reviews on the game's page. price_cents: List price in cents (e.g. 2499 for $24.99).
Returns: Dict with low (×30) / median (×50) / high (×63) revenue brackets in cents + dollars + a calibration warning.
| Name | Required | Description | Default |
|---|---|---|---|
| review_count | Yes | ||
| price_cents | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses it's a heuristic, not a forecast, includes error rate from author. Describes return structure with low/median/high brackets and calibration warning, compensating for lack of annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two paragraphs plus Args/Returns section, front-loaded purpose, every sentence adds value. Efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given output schema exists, description explains return structure in detail. All parameters documented. Tool is simple; description is fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema has no descriptions (0% coverage), but description fully explains both parameters: review_count as total Steam reviews, price_cents as list price in cents with example (2499 for $24.99). Adds meaning beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it applies the Boxleiter rule-of-thumb heuristic, distinguishes from get_forecast as a sanity check. Provides specific formula and author context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says when to use (quick heuristic) and when not (not calibrated), suggests comparing with get_forecast for outlier detection. Names sibling tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_calibration_summaryA
Return the latest published live calibration coverage summary.
Numbers are from the Q2 2026 quarterly report. Live-refreshed table is at https://steamforecast.app/methodology — fetch get_methodology() for the canonical current values.
Returns: Dict with aggregate coverage, per-stratum coverage table, sample sizes, and link to the live page + quarterly report.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Discloses the return structure (dict with aggregate, per-stratum, sample sizes, links). With no annotations, this provides solid transparency, though it could mention idempotency or caching.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short, front-loaded sentences. No fluff; every sentence adds useful information. Efficiently structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description complements it by explaining the data source and linking to live data. For a zero-parameter tool, this is fully complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist, and schema coverage is 100%. The description adds value by explaining what the output contains, justifying the lack of parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states verb 'Return' and resource 'calibration coverage summary'. Differentiates from sibling get_methodology by specifying that this tool returns quarterly report numbers while get_methodology provides canonical current values.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly mentions the data source (Q2 2026 quarterly report) and directs users to fetch get_methodology for current values, providing clear when-to-use and alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_compsA
Fetch top-K nearest-neighbor comparable Steam games for an appid.
Comps are surfaced via pgvector cosine-similarity over a 1024-dim BGE embedding of game metadata (genres, tags, language, platform support, multiplayer features). Useful for sanity-checking a forecast: if the nearest comps cluster in a tight revenue band, the cone is likely well-anchored; if they're dispersed, the cone correctly widens.
Args: appid: Steam app ID to find comps for. k: Number of comps to return (1-20, default 5).
Returns: Dict with appid + list of comps, each including release year, price, follower count, week-1 + lifetime revenue, cosine similarity.
| Name | Required | Description | Default |
|---|---|---|---|
| appid | Yes | ||
| k | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the embedding-based similarity method and the return format, which is transparent. It does not mention authorization or error cases, but remains informative for a read-only tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is about 6 sentences, well-structured with a clear purpose, technical detail, usage context, and parameter/return specs. Every sentence adds value, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (2 params, no nesting) and the presence of an output schema, the description covers purpose, method, usage, parameters, and return fields. It lacks error handling details, but the completeness is high for a straightforward tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, meaning no descriptions in the schema. The description compensates by explaining both parameters: appid is the Steam app ID, k is the number of comps (1-20, default 5). This adds full semantic value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it fetches top-K nearest-neighbor comparable Steam games for an appid. It specifies the resource (comps) and action (fetch), and distinguishes from sibling tools like boxleiter_estimate by focusing on comps rather than estimation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a specific use case: 'sanity-checking a forecast.' It explains why comps are useful but does not explicitly state when not to use it or mention alternative tools. However, the context is clear enough for appropriate selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_forecastA
Fetch a calibrated P10–P90 revenue cone for a Steam game by appid.
Uses the same v1.1 model that powers the public steamforecast.app site. Returns a JSON object with cone bounds in cents + dollars, the model version, the genre cluster used for stratified calibration, and links back to the methodology page + latest calibration report.
Args: appid: Steam app ID (e.g. 1145360 for Hades). wishlist: Optional override for catalog wishlist count (what-if mode). followers: Optional override for catalog SteamCommunity follower count.
Returns: Dict with appid, name, genres, p10/p50/p90 revenue, methodology URL.
Raises: httpx.HTTPStatusError: 404 if appid not in v1.1 catalog (~49K apps); 503 if forecast model is briefly unloaded during a deploy.
| Name | Required | Description | Default |
|---|---|---|---|
| appid | Yes | ||
| wishlist | No | ||
| followers | No |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It discloses the model version, error cases (404, 503), and output structure. It does not mention rate limits or authentication, but these are less critical for a read-only tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections: purpose, method details, arguments, returns, and raises. Every sentence adds value; no fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the existing output schema, the description does not need to explain return values. It covers inputs thoroughly and lists error cases. It lacks mention of any side effects or prerequisites, but the tool is straightforward.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 0%, so the description fully compensates. It explains appid with an example, and describes wishlist and followers as optional overrides for what-if mode, adding meaning beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool fetches a calibrated P10-P90 revenue cone for a Steam game by appid. It specifies the model version and that it powers the public site, making the purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explains what the tool does but provides no guidance on when to use it versus sibling tools like boxleiter_estimate or get_calibration_summary. Usage context is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_methodologyA
Return the AI-crawler-friendly methodology summary (llms.txt).
Pulls the canonical content discovery file from steamforecast.app/llms.txt, which lists high-quality URLs (methodology, guides, reports, tools) for AI agents to ingest. Useful when a model wants the full sitemap of authoritative content rather than a single forecast.
Returns: Plaintext content of /llms.txt (markdown-formatted per llmstxt.org).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Although no annotations are provided, the description fully discloses the tool's behavior: it pulls the canonical llms.txt file, returns plaintext markdown content, and lists the type of URLs included. The read-only nature and lack of side effects are evident.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is reasonably concise with a clear title-like first sentence, a short explanation paragraph, and a Returns section. It could be slightly more terse by avoiding slight repetition, but overall it is well-structured and easy to parse.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no parameters and an output schema exists (implied), the description sufficiently explains the return type (plaintext markdown), content (URLs for methodology, guides, reports, tools), and source. No additional information is needed for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no parameters, and the input schema is empty (100% coverage vacuously). As per guidelines, baseline score is 4 when there are 0 parameters. The description does not need to add parameter info.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it returns the AI-crawler-friendly methodology summary (llms.txt) from steamforecast.app/llms.txt, which lists high-quality URLs for AI agents. It distinguishes itself from a single forecast tool (get_forecast) by emphasizing it provides a full sitemap of authoritative content.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description advises using the tool when a model wants the full sitemap of authoritative content rather than a single forecast, implicitly differentiating it from the sibling get_forecast. While it does not explicitly exclude other siblings, the context is clear and sufficient for an agent to decide.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
Each tool has a distinct purpose: heuristic estimation, calibrated forecast, calibration summary, comparable games, and methodology. No overlap or ambiguity.
Four of five tools follow the 'get_<noun>' pattern. The outlier 'boxleiter_estimate' uses a different convention, but it is still descriptive and not confusing.
Five tools is well-scoped for a forecasting server, covering the main forecast, heuristic, comps, calibration, and methodology without excess or deficiency.
The tool surface covers all key operations for the domain: generating forecasts, sanity checks, comparison, calibration context, and documentation. No obvious gaps.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Real-time planetary signal engine and Model Context Protocol (MCP) server for autonomous AI agents.
A Model Context Protocol server for Wix AI tools
Calibrated world model for AI agents. 40 tools: world state, markets, trading. Kalshi + Polymarket.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceThis server implements the Model Context Protocol to facilitate meaningful interaction and understanding development between humans and AI through structured tools and progressive interaction patterns.57
- AlicenseBqualityCmaintenanceModel Context Protocol server that enables LLMs and AI assistants to retrieve real-time Dota 2 statistics, match data, player information, and game metrics through a standardized interface.178MIT
- AlicenseNot gradedqualityDmaintenanceModel Context Protocol server that standardizes tool discovery, execution, and context management for AI applications.MIT
- AlicenseNot gradedqualityDmaintenanceModel Context Protocol server that connects AI agents with CrowdStrike Falcon platform for intelligent security analysis and automation.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/GC108/steamforecast-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server