Gaming platform
## Steam MCP Server: Gaming Platform Integration The **Steam MCP Server** integrates the Steam gaming platform into Google Antigravity, enabling AI-assisted game library management, achievement tracking, and community features access. ### Why Steam MCP? - **Library Management**: Access and organize your Steam game library efficiently - **Achievement Tracking**: Monitor achievement progress across all games - **Friends Integration**: View friend activity, online status, and game sessions - **Store Features**: Track wishlist, sales, and new releases - **Workshop Support**: Access and manage Steam Workshop mods and content ### Key Features #### 1. Library Access ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my Steam library sorted by playtime and unplayed games" }] ) ``` #### 2. Achievement Progress ```python # Track achievements response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my achievement progress for games I am close to completing" }] ) ``` #### 3. Sales Tracking ```python # Monitor sales response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Check if any games on my wishlist are currently on sale" }] ) ``` #### 4. Friend Activity ```python # View friends response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show which friends are online and what games they are playing" }] ) ``` ### Configuration ```json { "mcpServers": { "steam": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-steam"], "env": { "STEAM_API_KEY": "your-api-key", "STEAM_USER_ID": "your-steam-id" } } } } ``` ### Use Cases **Library Organization**: Manage and organize large game libraries efficiently. **Achievement Hunting**: Track and plan achievement completion across games. **Deal Alerts**: Monitor wishlist items for sales and discounts. **Social Gaming**: Coordinate gaming sessions with friends. The Steam MCP Server brings comprehensive gaming platform management into your workflow.
{
"mcpServers": {
"steam": {
"mcpServers": {
"steam": {
"env": {
"STEAM_API_KEY": "your-steam-api-key"
},
"args": [
"-y",
"steam-mcp-server"
],
"command": "npx"
}
}
}
}
}