steam-mcp

steam-mcp

Enables AI assistants to query Steam profiles, libraries, achievements, store data, and reviews via the Steam Web API.

Category
Visit Server

README

steam-mcp

An MCP server that exposes the Steam Web API to any AI harness — Claude Desktop, Claude Code, Cursor, Cline, Windsurf, or anything that speaks the Model Context Protocol.

Ask your assistant things like "How many hours have I put into Team Fortress 2?", "What are the most-played games my friend owns?", or "Summarize the reviews for Baldur's Gate 3" — and it fetches the answer live from Steam.

CI License: MIT Python 3.10+


Why

The Steam Web API is powerful but sprawling: dozens of interfaces, inconsistent shapes, 64-bit SteamIDs, an undocumented store API, and a mandatory key for anything player-related. steam-mcp wraps the useful parts behind a small, well-documented set of workflow-oriented MCP tools that return LLM-friendly, token-efficient responses.

Quickstart

You need a Steam Web API key for player/profile tools. Get one (free) at https://steamcommunity.com/dev/apikey. Store tools (app details, reviews, search) work without a key.

Run it straight from GitHub with no install using uv (works today — PyPI release pending):

STEAM_API_KEY=xxxxxxxx uvx --from git+https://github.com/rachittshah/steam-mcp steam-mcp

Or install it from source:

uv pip install git+https://github.com/rachittshah/steam-mcp
# once published to PyPI: uv pip install steam-mcp

Claude Desktop / Claude Code

Add to your MCP config (claude_desktop_config.json, or .mcp.json for Claude Code):

{
  "mcpServers": {
    "steam": {
      "command": "uvx",
      "args": ["--from", "git+https://github.com/rachittshah/steam-mcp", "steam-mcp"],
      "env": { "STEAM_API_KEY": "your-key-here" }
    }
  }
}

(After a PyPI release the args simplify to ["steam-mcp"].)

Cursor / Cline / Windsurf

Point the MCP server command at the same uvx --from git+... steam-mcp invocation and set STEAM_API_KEY in the environment. See docs/clients.md for per-client instructions.

Configuration

Variable Required Default Description
STEAM_API_KEY for player tools Steam Web API key.
STEAM_MCP_TIMEOUT no 20 HTTP request timeout (seconds).
STEAM_MCP_LANGUAGE no english Language for localized store responses.
STEAM_MCP_COUNTRY no US ISO country code for store pricing.

Tools

The full, generated tool reference lives in docs/tools.md. Highlights:

  • Identityresolve_vanity_url, get_player_summary, get_player_bans, get_steam_level
  • Libraryget_owned_games, get_recently_played_games, get_friend_list
  • Achievements & statsget_player_achievements, get_game_schema, get_global_achievement_percentages, get_current_player_count
  • Storeget_app_details, get_app_reviews, search_store
  • Newsget_news_for_app

Example prompts

Once connected, try asking your assistant:

  • "How many people are playing Counter-Strike 2 right now?"search_storeget_current_player_count
  • "What's the rarest achievement in Team Fortress 2?"get_global_achievement_percentages
  • "Summarize the recent reviews for Elden Ring."search_storeget_app_reviews
  • "Whose profile is steamcommunity.com/id/gabelogannewell, and what are they playing?"get_player_summary
  • "What are my 5 most-played games?" (needs your SteamID) → get_owned_games
  • "Any recent patch notes for Dota 2?"get_news_for_app

Development

git clone https://github.com/rachittshah/steam-mcp
cd steam-mcp
uv venv && source .venv/bin/activate
uv pip install -e ".[dev]"
ruff check . && mypy src && pytest

Contributing

Contributions welcome — see CONTRIBUTING.md.

License

MIT © Rachitt Shah. Not affiliated with or endorsed by Valve Corporation. Steam and the Steam logo are trademarks of Valve Corporation.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured