Steam MCP Server
Provides tools to query Steam store data, player counts, achievements, reviews, pricing, workshop items, leaderboards, and player profiles via the Steam Web API.
Provides tools for Steamworks partner APIs, including managing achievements, leaderboards, workshop items, lobbies, and inventory items via SDK guides and HTTP POST calls.
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 MCP Serverget player count for Counter-Strike 2"
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.
Query Steam store data, player statistics, achievements, reviews, pricing, workshop items, leaderboards, inventory, and player profiles - all as structured MCP tools callable from Cursor's AI agent.
No API key required for most features. Store lookups, player counts, global achievement stats, news, reviews, and app searches all work out of the box.
Getting Started
Prerequisites
Node.js 20 or later
npm
Install
git clone https://github.com/TMHSDigital/Steam-MCP.git
cd Steam-MCP
npm install
npm run buildSteam API Key
Some tools require a Steam Web API key. Get one free at steamcommunity.com/dev/apikey.
Set it as an environment variable:
# Bash / macOS / Linux
export STEAM_API_KEY="your_key_here"
# PowerShell
$env:STEAM_API_KEY = "your_key_here"Or in a .env file:
STEAM_API_KEY=your_key_hereTools that don't need a key work out of the box with zero configuration.
Usage with Cursor
Add the Steam MCP server to your Cursor MCP settings (.cursor/mcp.json in your project or global settings):
Via npx (recommended):
{
"mcpServers": {
"steam": {
"command": "npx",
"args": ["-y", "@tmhs/steam-mcp"],
"env": {
"STEAM_API_KEY": "your_key_here"
}
}
}
}Via local clone:
{
"mcpServers": {
"steam": {
"command": "node",
"args": ["/absolute/path/to/Steam-MCP/dist/index.js"],
"env": {
"STEAM_API_KEY": "your_key_here"
}
}
}
}Once configured, the tools are available to Cursor's AI agent. Pair with the Steam Developer Tools plugin for the full skill set.
Available Tools (v0.7.0) - 25 Total
These work without an API key:
Tool | Description |
| Store data: price, description, reviews, tags, platforms, system requirements |
| Search for games/apps by name or keyword |
| Current concurrent player count |
| Global achievement unlock percentages |
| Workshop item details (title, description, tags, subscribers) |
| Fetch user reviews with filters for language, sentiment, purchase type |
| Batch price check for multiple apps in a specific region |
| Review score, total counts, and positive percentage (no individual reviews) |
| Pricing breakdown across multiple countries/regions |
| Recent news articles with title, URL, contents, date, and author |
These require STEAM_API_KEY to be set:
Tool | Description |
| Player profile: name, avatar, online status |
| Game library with playtime data |
| Search/browse Workshop items with filters |
| Leaderboard scores and rankings (pass numeric ID from Steamworks dashboard) |
| Convert vanity URL to 64-bit Steam ID |
| Achievement/stat schema with display names, descriptions, and icon URLs |
| Per-player achievement unlock status and timestamps |
| List all leaderboards with numeric IDs, names, and sort methods |
These require a publisher API key with server IP allowlisted in Steamworks partner settings. SDK-only tools return code examples instead of making HTTP calls.
Tool | Type | Description |
| SDK guide | Returns C++/C#/GDScript code for ISteamMatchmaking lobby creation |
| SDK guide | Returns code for ISteamUGC Workshop upload workflow |
| HTTP POST | Update Workshop item metadata via IPublishedFileService partner API |
| HTTP POST | Set/unlock achievements via ISteamUserStats partner API (dev/test) |
| HTTP POST | Clear/re-lock achievements via ISteamUserStats partner API (dev/test) |
| HTTP POST | Upload scores via ISteamLeaderboards partner API |
| HTTP POST | Grant inventory items via IInventoryService partner API |
Endpoint | Auth |
| None |
| None |
| None |
| None |
| None |
| None |
| None |
| API key |
| API key |
| API key |
| API key |
| API key |
| API key |
| Publisher key |
| API key |
| Publisher key |
| Publisher key |
| Publisher key |
| Publisher key |
npm run dev # Watch mode with auto-reload
npm run build # Compile TypeScript to dist/
npm start # Run the compiled server
npm test # Run all tests (vitest)
npm run test:watch # Test watch modeSee CONTRIBUTING.md for how to add new tools and submit PRs.
Related
Steam Developer Tools - Cursor IDE plugin with 30 skills and 9 rules for Steam/Steamworks development
License
CC BY-NC-ND 4.0 - see LICENSE for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/TMHSDigital/steam-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server