steam-mcp
Provides tools for Steam game discovery and recommendations, including searching games, retrieving game details, finding similar games, and accessing user library and wishlist data.
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., "@steam-mcprecommend me some games I'd like based on my playtime history"
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.
steam-mcp
An MCP server for deciding which Steam games suit a particular person. It ranks the store against what the player actually logs hours in, blended with whatever they say they are in the mood for right now.
Ten tools. recommend_games is the front door; the rest exist so a ranking can
be interrogated rather than taken on faith.
Tool | Needs key | What it does |
| no (better with) | Rank the store for a stated preference, personalised by library |
| yes | Tag affinities weighted by playtime, top genres, signature games |
| no | Structured catalog search: tags, price, platform, release date, sale |
| no | Description, tags, price, reviews, Metacritic, Deck compatibility |
| no | "More like Hades": search on seed games' pooled tags |
| no | Score breakdown plus the most helpful review text |
| no | Steam's tag vocabulary, for getting names exactly right |
| yes | Owned games with hours, most-played first |
| no (public profile) | Wishlist with current price and discount |
| yes | Last two weeks of play |
Running it
npm install && npm run build
claude mcp add -s user steam-mcp -e STEAM_ID=<your SteamID64> -- node /path/to/steam-mcp/dist/index.jsEnvironment:
STEAM_ID(optional): default player, as a SteamID64. Tools also accept a vanity name or profile URL per call.STEAM_API_KEY(optional): from https://steamcommunity.com/dev/apikey. Only the library, recent-play and vanity-resolution paths need it. Everything else, including the wishlist on a public profile, is keyless, so the server is useful with no credential at all. It just cannot personalise.
A disk cache lives at $XDG_CACHE_HOME/steam-mcp (default ~/.cache). The
store's appdetails endpoint is throttled to roughly 200 per five minutes per
IP; the client paces that endpoint at 1.5s, the others far faster, and caches
aggressively (details six hours, tags and Deck data a week) so a second
recommendation in the same sitting is mostly free. Every tool that enriches a
list works under a deadline and reports how many games it skipped, so a long
request returns a partial answer rather than timing out at a proxy.
Related MCP server: Steam Review and Forum MCP
How the ranking works
src/taste.ts holds the whole model.
Profile. Each played game's hours are attributed to its community tags in proportion to their vote share, so a milsim's hours go mostly to Military and Tactical and only a sliver to Multiplayer. Three corrections sit on top:
Tags are weighted by rarity, derived from the popularity order of Steam's own tag dictionary (no extra requests). Without this every profile starts Action, Open World, Simulation, whoever the player is.
Games from one studio are pooled before compression. Three Arma entries are three measurements of one taste, not three times the evidence.
Hours are square-rooted. One outlier still leads, but does not write the whole profile.
Two-week play, when a key is available, counts a second time on top of lifetime hours: once as history, once as what the player is into now.
Score. Two signals on the same 0..1 scale, blended equally: fit, the cosine
between the candidate's tag vector and the profile, relative to the best any
game could do; and want, how much of the candidate's tag mass is what the
player asked for. Reception then penalises below Steam's "Mostly Positive" line
(70%) and never rewards above it, because candidates already arrive sorted by
reviews and rewarding them again would count popularity twice. Every reported
matchedOn entry is in score points and says whether the library or the request
earned it.
Order. The final list is re-ranked greedily for variety: a candidate loses up to 40% of its score for resembling something already chosen. Scores are reported untouched; only the order changes, and the tool description says so.
Tests
npm testBoth suites run against the live API, deliberately. test/smoke.mjs drives the
built server over real MCP stdio, which is the only place a silently dropped
schema or a changed store endpoint shows up. test/taste.ts runs the model over
test/fixtures/library.json, a real 45-game library, and asserts ranking
behaviour rather than exact numbers, since tag votes drift. Set STEAM_API_KEY
to also exercise the keyed tools.
Deploying with a key
A long-lived stdio server cannot get its key from a request-scoped secret
broker, so the keyed deployment belongs wherever an environment variable can be
injected at process start: a supervisord environment= line, a Nomad variable,
a systemd EnvironmentFile. The server reads STEAM_API_KEY once at startup and
never writes it anywhere.
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 Servers
- AlicenseAqualityAmaintenanceAbout Search Steam games, fetch user reviews, and analyze sentiment with topic drill-down to make informed purchasing decisions.4133MIT
- AlicenseNot gradedqualityBmaintenanceEnables exploring Steam store reviews and community discussion threads with server-side filtering, temporal analysis, and metadata context for understanding player sentiment and feedback beyond store page noise.251BSD 3-Clause
- AlicenseAqualityAmaintenanceEnables interaction with Steam: search games, get store details, reviews, prices, discounts, news, and player profiles, libraries, and achievements via the Steam Web API.255484MIT
- FlicenseNot gradedqualityCmaintenanceHelps users choose which Steam games to play or buy by analyzing their library, playtime, discounts, and reviews.
Related MCP Connectors
Steam Web API: profiles, owned games, achievements, app news, player counts.
Explore and discover video games from the Internet Game Database. Search titles, view detailed inf…
Steam concurrent player trends for any game over time. Free key at trendsapi.ai
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/312-dev/steam-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server