Connects to the Steam Web API to pull player data, game libraries, and store information. Exposes tools for querying owned games, player achievements, app news feeds, and store page details. Useful when you need to look up someone's Steam profile, check what games they own, see their progress on achievements, or pull recent news for a specific game. Part of the Pipeworx gateway, so you can either use it standalone or access it alongside 250+ other data sources through a single endpoint. Supports plain English queries through ask_pipeworx if you don't want to call individual tools directly.
Steam Web API MCP.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
owned_games | Owned games. |
player_achievements | Achievements for a game. |
app_news | App news feed. |
app_details | Store page detail (Steam Store API). |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"steam": {
"url": "https://gateway.pipeworx.io/steam/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Steam data" })
The gateway picks the right tool and fills the arguments automatically.
MIT