steam-store-search-mcp
Allows searching games by keyword, getting game details (price, release date, genre, description, header image), and retrieving player reviews (review count, positive rate) from the Steam Store.
Click on "Deploy 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-store-search-mcpSearch for 'Hades' and get game details."
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-store-search-mcp
Steam Storeの情報を取得するためのMCP(Model Context Protocol)サーバー
環境
podman compose
python 3.12
Related MCP server: steam-mcp
構成
src/mcp-server.py: MCPサーバー本体
src/tools/: MCPツール
Dockerfile: Dockerイメージ
requirements.txt: Pythonパッケージ
compose.yml: Podman Compose設定
使い方
コンテナのビルドと起動
# ビルド
podman compose build
# 起動
podman compose up -d動作確認(ログ)
podman compose logs -fデバッグ実行(ローカル)
ローカル環境で直接実行して、標準入力経由でJSON-RPCのやり取りを確認できます。
pip install -r requirements.txt
python src/mcp_server.pyMCPクライアント設定例
Claude Desktop 等の MCP クライアントで利用するための設定例です。
Claude Desktop (Desktop App)
~/Library/Application Support/Claude/claude_desktop_config.json に以下を追加します。
Podman を使用する場合:
{
"mcpServers": {
"steam-search-mcp": {
"command": "podman",
"args": [
"run",
"-i",
"--rm",
"docker.io/library/steam-store-search-mcp-mcp-server:latest"
]
}
}
}ツール
LLMに提供する機能(Tools)として、以下の3つを実装しています。
search_games(query): キーワードからゲームID(AppID)およびサムネイル画像を取得する。get_game_details(appid): 価格、リリース日、ジャンル、説明文、およびヘッダー画像URLを取得する。get_player_reviews(appid): 最近の評価(レビュー数、ポジティブ率など)を確認する。
パフォーマンス
APIリクエストの削減と高速化のため、簡易的なインメモリキャッシュを実装しています。
キャッシュ期間 (TTL): 1時間
対象:
search_games,get_game_details,get_player_reviewsのすべての出力結果
This server cannot be deployed
Maintenance
Related MCP Connectors
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
Gamedeals MCP — wraps CheapShark API (game deal aggregator, no auth required)
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Related MCP Servers
- AlicenseAqualityBmaintenanceMCP server for Valve's Steam that enables querying game libraries, player profiles, achievements, friends, store listings, Workshop items, and current player counts. Provides 14 tools across 5 categories with a React dashboard and REST bridge.141MIT
- AlicenseBqualityDmaintenanceMCP server that enables searching Steam games, fetching user reviews with filters, and retrieving game details including price and tags.218 npm5MIT
- AlicenseAqualityBmaintenanceMCP server providing 25 tools to query Steam store data, player statistics, achievements, reviews, pricing, workshop items, leaderboards, inventory, and player profiles for AI-powered IDEs like Cursor.268 npm4Creative Commons Attribution Non Commercial No Derivatives 4.0 International
- AlicenseAqualityBmaintenanceMCP server enabling AI assistants to search Steam games, retrieve official store metadata, and analyze player review sentiment via public Steam Storefront JSON APIs without an API key.35 npmMIT