steam-local-mcp
Let your agent control your steam client. e.g. "pick a strategy game from my library and launch it"
README
Steam Local MCP
A free, open-source Windows Model Context Protocol server that lets an MCP-capable agent work with the Steam client installed for the current Windows user.
Ask an agent to find an installed game, launch it, open its Steam page, check local download/update status, search the Store, or summarize Steam-library storage. Steam starts quietly in the background when a requested client action needs it.
This is a standard stdio MCP server. It is agent-neutral: use it with Codex, Claude, or any other MCP client that can run a local command.
Example Usage
User: "Pick a strategy game for me to play."
Agent: π οΈ Calling steam_list_games()
Agent: "How about Balatro? Should I launch it?"
User: "Yes."
Agent: π οΈ Calling steam_launch_game(app_id: 2861700)
Agent: "Launched Balatro."
What it can do
Local Steam tools β no API key
steam_list_gamesandsteam_find_gameβ inspect locally installed games across all configured Steam libraries.steam_launch_gameβ launch one installed game by name or app ID.steam_get_game_install_statusandsteam_get_download_statusβ inspect manifest-recorded install, update, download, and paused-download states.steam_get_library_storageβ show installed sizes and free disk space for every local Steam library.steam_open_library_page,steam_open_store_page, andsteam_open_client_pageβ navigate the Steam client.steam_install_gameβ ask Steam to install an app ID; Steam validates ownership and manages the install flow.steam_client_statusβ report the detected Steam installation, discovery source, and whether Steam is running.
Public Store tools β no API key
steam_search_storeβ find Store app IDs from a game name.steam_get_game_detailsβ get public metadata, price, genres, release date, and Metacritic score.
Optional account tools β Steam Web API key required
Set STEAM_API_KEY and STEAM_ID to enable:
steam_api_statusβ verify if API credentials are configured, valid, and connected to Steam's Web API.steam_get_libraryβ owned games, playtime, last played, filtering, and pagination.steam_get_recently_playedβ recently played games, ordered by two-week playtime.
Requirements
- Windows 10 or newer
- Steam installed for the current Windows user
- Node.js 20 or newer
Install from npm
To install the published package via npm, add this equivalent configuration to your MCP client:
{
"mcpServers": {
"steam": {
"command": "npx",
"args": ["-y", "steam-local-mcp"]
}
}
}
The configuration-file location differs by agent, but the command and arguments above remain the same. Restart or reconnect your MCP client after saving its configuration.
To confirm your install manually, run:
npx -y steam-local-mcp print-config
Install from source
Use this when developing, auditing the source, or before an npm release is available:
git clone https://github.com/Jackson-Brooks/steam-local-mcp.git
cd steam-local-mcp
npm install
npm run build
Then configure your MCP client to run the compiled entry point from the directory you cloned:
{
"mcpServers": {
"steam": {
"command": "node",
"args": ["C:\\path\\to\\steam-local-mcp\\dist\\src\\index.js"]
}
}
}
Replace C:\path\to\steam-local-mcp with your own clone location. Do not use another user's path.
Optional Steam Web API configuration
Pass credentials through your MCP client's environment configuration or the operating-system environment:
{
"mcpServers": {
"steam": {
"command": "npx",
"args": ["-y", "steam-local-mcp"],
"env": {
"STEAM_API_KEY": "your_key",
"STEAM_ID": "your_64_bit_steam_id"
}
}
}
}
The server never loads a .env file automatically. Never commit credentials. Steam profile and game-details privacy settings can prevent account tools from returning data; local client controls still work for private profiles.
Getting your Steam API credentials
- Sign in to Steam in a browser and open the Steam Web API key page.
- Create or copy your key, then set it as
STEAM_API_KEYin your MCP client's environment configuration. Keep it private. - Set
STEAM_IDto your numeric 64-bit Steam ID, not your account name. It is commonly visible in a profile URL such ashttps://steamcommunity.com/profiles/7656119.... - Restart or reconnect your MCP client, then call
steam_api_statusto confirm that the credentials are configured.
With the key configured, an agent can answer requests such as βshow my unplayed Steam gamesβ or βwhat have I played recently?β The key is optional: launching games, local install status, storage, Store search, and Store metadata work without it.
Steam detection and local status
Steam Local MCP checks, in order:
STEAM_PATHβ either the Steam directory or itssteam.exe- Current-user and machine Valve registry keys
- Conventional per-user, Program Files, and
C:\Steamlocations steam.exeonPATH
Use steam_client_status to see the selected path and discovery source. For a portable or unusual custom-drive install, set STEAM_PATH to the directory containing steam.exe.
Installation/download tools read Steam's local app manifests. needs_update: true means Steam has already recorded an update as pending. false means no pending update is currently recorded locally; it does not force a network update check.
Privacy and safety
- Local tools read local Steam files and open Steam URIs; they do not require a Steam Web API key.
steam_launch_gameonly launches games found in a local installed-game manifest.- Steam starts hidden when required for an action, rather than opening a visible launcher window first.
- There is no purchase or uninstall tool.
- Public Store descriptions are omitted by default. If explicitly requested, descriptions are capped, converted to plain text, and marked as untrusted external content.
- Web API and Store responses are cached locally under
%LOCALAPPDATA%\steam-local-mcp\cacheby default. SetSTEAM_MCP_CACHE_DIRto override it, and callsteam_refresh_cacheto clear it.
Development
npm install
npm test
npm pack --dry-run
The test suite includes local parsing/caching tests, mocked Store and API tests, all-tool MCP protocol tests, and a real stdio handshake for the packaged entry point.
Contributing
Issues and pull requests are welcome. Please include a regression test for behavior changes, and keep destructive Steam operations out of scope unless they are explicitly designed and documented.
License
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.