Epic Games Store integration
## Epic Games MCP Server: Gaming Platform Integration The **Epic Games MCP Server** integrates the Epic Games platform into Google Antigravity, enabling AI-assisted game library management, free game tracking, and Unreal Engine development workflow support. ### Why Epic Games MCP? - **Game Library**: Manage your Epic Games library and track installed games - **Free Games**: Track weekly free game offers and claim history - **Unreal Engine**: Integration with Unreal Engine for game development workflows - **Store Management**: Browse and manage wishlists and purchases - **Cloud Saves**: Access and manage cloud save data for games ### Key Features #### 1. Library Management ```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 Epic Games library and games I have not played yet" }] ) ``` #### 2. Free Games ```python # Track free games response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "What free games are available this week on Epic Games Store?" }] ) ``` #### 3. Wishlist ```python # Manage wishlist response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show my wishlist and notify me of any games currently on sale" }] ) ``` #### 4. Unreal Engine ```python # UE integration response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List available Unreal Engine versions and installed marketplace assets" }] ) ``` ### Configuration ```json { "mcpServers": { "epic-games": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-epic-games"], "env": { "EPIC_AUTH_TOKEN": "your-auth-token" } } } } ``` ### Use Cases **Game Management**: Organize and manage your Epic Games library efficiently. **Free Game Alerts**: Never miss weekly free game offerings. **Game Development**: Integrate Unreal Engine workflows into development. **Purchase Tracking**: Monitor sales and manage wishlists. The Epic Games MCP Server brings gaming platform management into your workflow for both gaming and game development needs.
{
"mcpServers": {
"epic-games": {
"mcpServers": {
"epic-games": {
"env": {
"EPIC_CLIENT_ID": "your-client-id",
"EPIC_CLIENT_SECRET": "your-secret"
},
"args": [
"-y",
"epic-games-mcp-server"
],
"command": "npx"
}
}
}
}
}