gameswarp-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_gamesA | Find a game on Steam by name and get its appid, which every other tool needs. Matches prefixes ("no man" finds No Man's Sky) but not typos. Searching in Russian returns Russian titles. |
| get_review_timelineA | Monthly positive and negative review counts for the whole life of a game, plus the last 30 days daily. This is how you find when a rating moved. It is cheap and covers all history, unlike get_reviews. |
| get_game_newsB | News Steam holds for a game. Developer announcements are the patch notes, and they carry dates - use them to find which patch landed near a rating change. Press items are third-party articles Steam syndicates. |
| get_reviewsA | Reviews for a game, optionally limited to a date window, sentiment, or players with real time in the game. Only recent windows can be read: Steam offers no way to jump to an old date, so anything more than a few months back fails with a clear message. Use get_review_timeline for old history instead. |
| search_articlesB | Full-text search over gaming press articles collected from outlet feeds. Unlike the Steam tools this covers the industry generally, so it answers what is being written about a game or a topic right now. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Most tools are clearly distinct: search_games is a Steam appid lookup, get_review_timeline is aggregated history, and get_reviews is individual recent reviews. There is minor potential confusion between get_reviews and get_review_timeline, and between search_articles and get_game_news, but the descriptions explicitly differentiate their data sources and use cases.
All tools follow a consistent verb_noun snake_case pattern: search_* for lookup-style tools and get_* for retrieval tools. The naming pattern is predictable and matches the underlying operation.
Five tools is a well-scoped set for a gaming/Steam research server. Each tool serves a distinct data need without redundancy or bloat.
The core workflow is covered: search a game, get review timeline, get detailed reviews, get news, and search press articles. Minor gaps exist around game metadata/details, but the set supports the apparent purpose of analyzing rating changes and related coverage.